fix some typos in docs (#10598)
Andrew Gillis committed
Nov 25, 2024 at 13:15 UTC
ef58568964b9f4a399fe508a77ba305a5ca6d383
2 files changed
+3
-3
docs/add-code-flow.md
+2
-2
@@ -1,6 +1,6 @@
1
# IPFS : The `Add` command demystified
2
3
-The goal of this document is to capture the code flow for adding a file (see the `coreapi` package) using the IPFS CLI, in the process exploring some datastructures and packages like `ipld.Node` (aka `dagnode`), `FSNode`, `MFS`, etc.
3
+The goal of this document is to capture the code flow for adding a file (see the `coreapi` package) using the IPFS CLI, in the process exploring some data structures and packages like `ipld.Node` (aka `dagnode`), `FSNode`, `MFS`, etc.
4
5
## Concepts
6
- [Files](https://github.com/ipfs/docs/issues/133)
@@ -99,4 +99,4 @@ Within the function, a new `Adder` is created with the configured `Blockstore` a
99
100
- **[`adder.PinRoot()`](https://github.com/ipfs/go-ipfs/blob/v0.4.18/core/coreunix/add.go#L171)** - *Pin all files under the `MFS` **root***
101
102
- The whole process ends with `PinRoot` recursively pinning all the files under the `MFS` **root**
\ No newline at end of file
102
+ The whole process ends with `PinRoot` recursively pinning all the files under the `MFS` **root**
docs/datastores.md
+1
-1
@@ -53,7 +53,7 @@ Uses [pebble](https://github.com/cockroachdb/pebble) as a key value store.
53
}
54
```
55
56
-The following options are availble for tuning pebble.
56
+The following options are available for tuning pebble.
57
If they are not configured (or assigned their zero-valued), then default values are used.
58
59
* `bytesPerSync`: int, Sync sstables periodically in order to smooth out writes to disk. (default: 512KB)