-
Notifications
You must be signed in to change notification settings - Fork 382
docs: add and fix crate-level documentation for all CosmWasm crates #2510
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
base: main
Are you sure you want to change the base?
Conversation
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.
Nice stuff! I put some comments inline.
//! CosmWasm is a smart contract platform for the Cosmos ecosystem. | ||
//! This binary provides a CLI tool for verifying CosmWasm smart contracts before uploading to a blockchain. | ||
//! | ||
//! For more information, see: <https://docs.cosmwasm.com> |
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.
The docs were recently moved to https://cosmwasm.cosmos.network
, so I would link to that.
// The crypto crate is intended to be used in internal crates / utils. | ||
// Please don't use any of these types directly, as | ||
// they might change frequently, or be removed in the future. | ||
// This crate does not adhere to semantic versioning. |
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.
Now this is not part of the crate docs anymore, but it really should be. Let's just keep this note part of the crate docs below the new explainer.
Fix #2234
This commit adds or updates crate-level documentation comments (//! ...) for all main CosmWasm crates in the repository.