Fix various issues including #[clap]
transformation, broken links, and spelling errors
#131
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR addresses multiple issues across the codebase:
#[clap]
to#[arg]
or#[command]
where applicable to match the latest standards.book/docs/05-Advanced/04-Running-tests.md
, replacedRPC-configuration#rpc-node-requirements
with03-RPC-configuration.md
../Advanced/Custom-chains
to the correct path./Advanced/03-Custom-chains.md
inbook/docs/03-RPC-configuration.md
.book/docs/02-Getting-started.md
.https://www.pagerduty.com/events/
incrates/executor/host/src/alerting.rs
.DESERIALZE_INPUTS
toDESERIALIZE_INPUTS
in various files.fron
->from
incrates/primitives/src/genesis.rs
.exectution
->execution
incrates/executor/client/src/error.rs
.cunstom
->custom
incrates/executor/client/src/custom.rs
.SP{1
->SP1
inbook/docusaurus.config.ts
.bin/continuous/src/main.rs
.The changes made aim to clean up the code, fix broken links, and improve documentation consistency.
Additionally, I tested the changes with
cargo clippy
andcargo build
:Error:

Fix:

cargo clippy --workspace --all-targets --all-features -- -D warnings
cargo build
Note: Due to issues I faced on my PC, I had to make the changes through the GitHub web interface, so you will see 18 commit messages. If needed, I can squash them at a later time, or if not required, it works fine for me as well.