Skip to content

Commit 5582b1a

Browse files
authored
fix(docs): correct typos across whole doc (#12909)
* fix:typos * fix: suggested change
1 parent 04a5f33 commit 5582b1a

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

cli/chain.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ var ChainStatObjCmd = &cli.Command{
279279
ArgsUsage: "[cid]",
280280
Description: `Collect object size and ipld link count for an object.
281281
282-
When a base is provided it will be walked first, and all links visisted
282+
When a base is provided it will be walked first, and all links visited
283283
will be ignored when the passed in object is walked.
284284
`,
285285
Flags: []cli.Flag{

documentation/en/architecture/mpool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ The meaning of these fields is as follows:
139139
Default is empty.
140140
- `SizeLimitHigh` -- this is the maximum number of pending messages before triggering a
141141
prune in the message pool. Note that messages from priority addresses are never pruned.
142-
Defafult is 30000.
142+
Default is 30000.
143143
- `SizeLimitLow` -- this is the number of pending messages that should be kept after a prune.
144144
Default is 20000.
145145
- `ReplaceByFeeRatio` -- this is the gas fee ratio for replacing messages in the mpool.

documentation/en/chain-indexer-overview-for-operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ The `Fevm.Events` options were marked as deprecated in Lotus 1.26, having been m
117117
* `Fevm.Events.DatabasePath` (no replacement available)
118118
* `Fevm.Events.DisableRealTimeFilterAPI` (no replacement available)
119119
* `Fevm.Events.DisableHistoricFilterAPI` (no replacement available)
120-
* `Fevm.Events.FilterTTL` (use `Events.FilterTTL` intead)
120+
* `Fevm.Events.FilterTTL` (use `Events.FilterTTL` instead)
121121
* `Fevm.Events.MaxFilters` (use `Events.MaxFilters` instead)
122122
* `Fevm.Events.MaxFilterResults` (use `Events.MaxFilterResults` instead)
123123
* `Fevm.Events.MaxFilterHeightRange` (use `Events.MaxFilterHeightRange` instead)

documentation/en/cli-lotus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1802,7 +1802,7 @@ USAGE:
18021802
DESCRIPTION:
18031803
Collect object size and ipld link count for an object.
18041804
1805-
When a base is provided it will be walked first, and all links visisted
1805+
When a base is provided it will be walked first, and all links visited
18061806
will be ignored when the passed in object is walked.
18071807
18081808

documentation/misc/Building_a_network_skeleton.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,17 +201,17 @@ Note: one only needs to update `filecoin-ffi`'s dependency on `go-state-types` w
201201
- Set `const GenesisNetworkVersion = network.VersionXX` where XX is the network version you are upgrading from.
202202
- `params_butterfly.go`
203203
- set previous upgrade to `var UpgradeXxHeigh = abi.ChainEpoch(-xx-1)`
204-
- Add comment with ?????? signaling that the new upgrade date is unkown
204+
- Add comment with ?????? signaling that the new upgrade date is unknown
205205
- Add `const UpgradeXxHeight = 999999999999999`
206206
- `params_calibnet.go`
207-
- Add comment with `??????` signaling that the new upgrade date is unkown
207+
- Add comment with `??????` signaling that the new upgrade date is unknown
208208
- Add `const UpgradeXxHeight = 999999999999999`
209209
- `params_interop.go`
210210
- set previous upgrade to `var UpgradeXxHeigh = abi.ChainEpoch(-xx-1)`
211211
- Add `const UpgradeXxHeight = 50`
212212
- `params_mainnet.go`
213213
- Set previous upgrade to `const UpgradeXxHeight = XX`
214-
- Add comment with ???? signaling that the new upgrade date is unkown
214+
- Add comment with ???? signaling that the new upgrade date is unknown
215215
- Add `var UpgradeXxHeight = abi.ChainEpoch(9999999999)`
216216
- Change the `LOTUS_DISABLE_XX` env variable to the new network name
217217
- `params_testground.go`

0 commit comments

Comments
 (0)