Skip to content

Commit cb7b832

Browse files
xgreenxAurelienFT
andauthored
Apply all suggestions from closed PRs (#3018)
Applied one-line suggestion from closed PRs from external contributors. --------- Co-authored-by: AurelienFT <[email protected]>
1 parent c34e0c1 commit cb7b832

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

.github/workflows/scripts/verify_tag.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if [ -z "$MANIFEST" ]; then
2323
exit 1
2424
fi
2525

26-
# strip preceeding 'v' if it exists on tag
26+
# strip preceding 'v' if it exists on tag
2727
REF=${REF/#v}
2828
TOML_VERSION=$(cat $MANIFEST | dasel -r toml 'workspace.package.version')
2929

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
[![crates.io](https://img.shields.io/crates/v/fuel-core?label=latest)](https://crates.io/crates/fuel-core)
55
[![docs](https://docs.rs/fuel-core/badge.svg)](https://docs.rs/fuel-core/)
66
[![discord](https://img.shields.io/badge/chat%20on-discord-orange?&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/xfpK4Pe)
7+
[![twitter](https://img.shields.io/twitter/follow/fuel_network)](https://x.com/fuel_network)
78

89
Fuel client implementation.
910

@@ -23,7 +24,7 @@ Before pushing any changes or creating pull request please run `source ci_checks
2324

2425
## Building
2526

26-
If you plan to use already pre-compiled binairies you can directly go to [Running a Ignition node](#running-a-ignition-node).
27+
If you plan to use already pre-compiled binaries you can directly go to [Running a Ignition node](#running-a-ignition-node).
2728

2829
### System Requirements
2930

docs/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ about unrelated components, and refactors can easily control their blast radius.
1313
In a system of shared global traits between modules, any updates to an interface will cause breaking changes
1414
to the mocks and test harnesses for all consuming modules. This is less than ideal when these domain modules
1515
don't need to use the new changes. However, in a system where each domain controls its ports, adjusting an
16-
interface will only affect the port owner and the implementor.
16+
interface will only affect the port owner and the implementer.
1717

1818
The implementation of "Ports" (aka adapters) referring to other domain modules, should reside in the main fuel-core
1919
crate. This way, domain modules should never need to take a dependency on each other. This helps to avoid circular

docs/developers/debugging.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ A key pair can be generated by running the utility binary `fuel-core-keygen`:
5656
cargo run --bin fuel-core-keygen new
5757
```
5858

59-
The resulting key pair printed to the console contains an address and secret. The `secret` can be provided to the `--keypair` argument when running the node.
59+
The resulting key pair printed to the console contains an address and a secret. The `secret` can be provided to the `--keypair` argument when running the node.
6060

6161
The `--network` argument identifies the name of the network to join. The network name is used during peer discovery. For example, users can specify `--network beta-4` to join the Beta 4 network. Similarly, setting the environment variable `NETWORK="beta-4"` will produce the same result.
6262

63-
For more information about client networking, see the Fuel guide on [running a node](https://docs-hub.vercel.app/guides/running-a-node/).
63+
For more information about client networking, see the Fuel guide on [running a node](https://docs-hub.vercel.app/docs/node-operator/#running-a-node/).
6464

6565
## Common Issues
6666

docs/fee_calculations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ to include an additional cost to op codes that write new data to storage or to
99
transactions that add new contracts to the chain.
1010

1111
There are a number of ways we might calculate this value; we have decided to go
12-
with a simple calculatoin based on our target storage growth and working
12+
with a simple calculation based on our target storage growth and working
1313
backward from there.
1414

1515
#### Pessimistic Estimate

tests/tests/tx/upgrade.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,6 +569,6 @@ async fn state_transition_bytecode_should_be_queryable_by_its_root_and_version()
569569
);
570570
match state_transition_bytecode_by_root.bytecode {
571571
UploadedBytecode::Completed(bytecode) => assert_eq!(bytecode, WASM_BYTECODE),
572-
_ => panic!("bytecode uploade incomplete"),
572+
_ => panic!("bytecode uploaded incomplete"),
573573
};
574574
}

0 commit comments

Comments
 (0)