diff --git a/cli/chain.go b/cli/chain.go index 0c25a881c6b..7934a794bc7 100644 --- a/cli/chain.go +++ b/cli/chain.go @@ -279,7 +279,7 @@ var ChainStatObjCmd = &cli.Command{ ArgsUsage: "[cid]", Description: `Collect object size and ipld link count for an object. - When a base is provided it will be walked first, and all links visisted + When a base is provided it will be walked first, and all links visited will be ignored when the passed in object is walked. `, Flags: []cli.Flag{ diff --git a/documentation/en/architecture/mpool.md b/documentation/en/architecture/mpool.md index dedabbfb74a..5b22e169c96 100644 --- a/documentation/en/architecture/mpool.md +++ b/documentation/en/architecture/mpool.md @@ -139,7 +139,7 @@ The meaning of these fields is as follows: Default is empty. - `SizeLimitHigh` -- this is the maximum number of pending messages before triggering a prune in the message pool. Note that messages from priority addresses are never pruned. - Defafult is 30000. + Default is 30000. - `SizeLimitLow` -- this is the number of pending messages that should be kept after a prune. Default is 20000. - `ReplaceByFeeRatio` -- this is the gas fee ratio for replacing messages in the mpool. diff --git a/documentation/en/chain-indexer-overview-for-operators.md b/documentation/en/chain-indexer-overview-for-operators.md index 1c6e3a238a5..bcb16632380 100644 --- a/documentation/en/chain-indexer-overview-for-operators.md +++ b/documentation/en/chain-indexer-overview-for-operators.md @@ -117,7 +117,7 @@ The `Fevm.Events` options were marked as deprecated in Lotus 1.26, having been m * `Fevm.Events.DatabasePath` (no replacement available) * `Fevm.Events.DisableRealTimeFilterAPI` (no replacement available) * `Fevm.Events.DisableHistoricFilterAPI` (no replacement available) -* `Fevm.Events.FilterTTL` (use `Events.FilterTTL` intead) +* `Fevm.Events.FilterTTL` (use `Events.FilterTTL` instead) * `Fevm.Events.MaxFilters` (use `Events.MaxFilters` instead) * `Fevm.Events.MaxFilterResults` (use `Events.MaxFilterResults` instead) * `Fevm.Events.MaxFilterHeightRange` (use `Events.MaxFilterHeightRange` instead) diff --git a/documentation/en/cli-lotus.md b/documentation/en/cli-lotus.md index 6cf9833089d..d705df42455 100644 --- a/documentation/en/cli-lotus.md +++ b/documentation/en/cli-lotus.md @@ -1802,7 +1802,7 @@ USAGE: DESCRIPTION: Collect object size and ipld link count for an object. - When a base is provided it will be walked first, and all links visisted + When a base is provided it will be walked first, and all links visited will be ignored when the passed in object is walked. diff --git a/documentation/misc/Building_a_network_skeleton.md b/documentation/misc/Building_a_network_skeleton.md index 0f9dcbccc18..ac76d48a077 100644 --- a/documentation/misc/Building_a_network_skeleton.md +++ b/documentation/misc/Building_a_network_skeleton.md @@ -201,17 +201,17 @@ Note: one only needs to update `filecoin-ffi`'s dependency on `go-state-types` w - Set `const GenesisNetworkVersion = network.VersionXX` where XX is the network version you are upgrading from. - `params_butterfly.go` - set previous upgrade to `var UpgradeXxHeigh = abi.ChainEpoch(-xx-1)` - - Add comment with ?????? signaling that the new upgrade date is unkown + - Add comment with ?????? signaling that the new upgrade date is unknown - Add `const UpgradeXxHeight = 999999999999999` - `params_calibnet.go` - - Add comment with `??????` signaling that the new upgrade date is unkown + - Add comment with `??????` signaling that the new upgrade date is unknown - Add `const UpgradeXxHeight = 999999999999999` - `params_interop.go` - set previous upgrade to `var UpgradeXxHeigh = abi.ChainEpoch(-xx-1)` - Add `const UpgradeXxHeight = 50` - `params_mainnet.go` - Set previous upgrade to `const UpgradeXxHeight = XX` - - Add comment with ???? signaling that the new upgrade date is unkown + - Add comment with ???? signaling that the new upgrade date is unknown - Add `var UpgradeXxHeight = abi.ChainEpoch(9999999999)` - Change the `LOTUS_DISABLE_XX` env variable to the new network name - `params_testground.go`