-
Notifications
You must be signed in to change notification settings - Fork 336
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
new cosmwasm doc #1968
base: main
Are you sure you want to change the base?
new cosmwasm doc #1968
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.
Thank you!
I think Chris can review the changes when he's back. In the meantime could you run the markdown formatter we use here? ./devtools/format_md.sh
This should make the CI happy and makes it easier to review the changes.
Also check out https://editorconfig.org/ and |
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! This adds doc comments to a lot of types that were missing them.
I left some comments inline to improve.
It would also be good to add the leading space to all of the doc-comments. A lot of the new / changed ones are missing it.
@@ -15,13 +15,13 @@ pub struct OwnedDeps<S: Storage, A: Api, Q: Querier, C: CustomQuery = Empty> { | |||
pub querier: Q, | |||
pub custom_query_type: PhantomData<C>, | |||
} | |||
|
|||
/// A mutable version of `Deps` that allows changes to the dependencies. |
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 to have a doc comment here. I think we can be a bit more specific:
/// A mutable version of `Deps` that allows changes to the dependencies. | |
/// A mutable version of `Deps` that allows writing to storage. |
Co-authored-by: Christoph Otter <[email protected]>
Co-authored-by: Christoph Otter <[email protected]>
Co-authored-by: Christoph Otter <[email protected]>
No description provided.