Skip to content

Commit d504946

Browse files
committed
fix(spellcheck): resolved error from 'make spellcheck'
1 parent 367e3b1 commit d504946

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.config/forest.dic

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ enums
199199
EOF
200200
Etaoin
201201
Etaoin/M
202+
eth
202203
Eth
203204
EthCallMessage
204205
Ethereum
@@ -673,4 +674,9 @@ yaml
673674
yml
674675
YugabyteDB
675676
Ziegelmayer
676-
zstd
677+
zstd
678+
CurrentEpoch
679+
RLP
680+
Grafana
681+
UI
682+
MDX

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ yarn typecheck # Validate typescript files
4444
4545
### Deployment
4646

47-
The documentation site is continuously deployed to CloudFlare Pages, triggered on every commit to `main`. [This workflow](/.github/workflows/docs-deploy.yml) defines the deployment process.
47+
The documentation site is continuously deployed to Cloudflare Pages, triggered on every commit to `main`. [This workflow](/.github/workflows/docs-deploy.yml) defines the deployment process.
4848

4949
## Site Structure
5050

f3-sidecar/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
In addition to the Rust toolchain, Go toolchain is required to build the
44
`f3-sidecar`. The Go version is specified in `go.mod`.
55

6-
Follow https://go.dev/doc/install or use one of the version managers of Go.
6+
Follow this [guide](https://go.dev/doc/install) to install or use one of the version managers of Go.
77
(e.g. https://github.com/voidint/g?tab=readme-ov-file#installation)
88

99
### EC tests

src/shim/actors/builtin/miner/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ impl State {
376376
}
377377
}
378378

379-
/// Unclaimed funds. Actor balance - (locked funds, precommit deposit, ip requirement) Can go negative if the miner is in IP debt.
379+
/// Unclaimed funds. Actor balance - (locked funds, pre-commit deposit, ip requirement) Can go negative if the miner is in IP debt.
380380
pub fn available_balance(&self, balance: &BigInt) -> anyhow::Result<TokenAmount> {
381381
let balance: TokenAmount = TokenAmount::from_atto(balance.clone());
382382
let balance_v3 = from_token_v2_to_v3(&balance);

0 commit comments

Comments
 (0)