-
Notifications
You must be signed in to change notification settings - Fork 286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs(specs): remove root level state machine modules #3275
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
book | ||
theme |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,10 +16,4 @@ | |
- [Resource Pricing](./specs/resource_pricing.md) | ||
- [Multisig](./specs/multisig.md) | ||
- [State Machine Modules](./specs/state_machine_modules.md) | ||
- [blob](https://github.com/celestiaorg/celestia-app/blob/main/x/blob/README.md) | ||
- [blobstream](https://github.com/celestiaorg/celestia-app/blob/main/x/blobstream/README.md) | ||
- [mint](https://github.com/celestiaorg/celestia-app/blob/main/x/mint/README.md) | ||
- [paramfilter](https://github.com/celestiaorg/celestia-app/blob/main/x/paramfilter/README.md) | ||
- [upgrade](https://github.com/celestiaorg/celestia-app/blob/main/x/upgrade/README.md) | ||
- [tokenfilter](https://github.com/celestiaorg/celestia-app/blob/main/x/tokenfilter/README.md) | ||
- [Mainnet Parameters](./specs/params.md) | ||
Comment on lines
16
to
19
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Tip Codebase Verification The verification process revealed that all the links listed in the Analysis chain
The changes made to the README.md file, specifically the removal of redundant links under the State Machine Modules section, align with the PR's objectives to streamline documentation. Ensure all remaining links are correctly formatted and functional. Scripts ExecutedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Verify the correctness and functionality of the remaining links in README.md
for link in $(grep -oP '\(./specs/\K[^)]+' specs/src/README.md); do
if [ ! -f "specs/src/$link" ]; then
echo "Missing file for link: $link"
fi
done
Length of output: 3407 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This config wasn't doing anything because "src" is the default
Ref: https://rust-lang.github.io/mdBook/format/configuration/general.html#general-metadata