-
Notifications
You must be signed in to change notification settings - Fork 824
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
Deny missing docs in runtime core and add missing docs #942
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 so much for doing this!!
The comments I've left may all be addressed post-commit.
#[repr(u8)] | ||
#[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)] | ||
pub enum GPR { | ||
/// RAX Register |
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.
Is there a way to suppress the extra comments here? These aren't adding value, and they're doubling the number of lines.
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.
@nlewycky They can be suppressed individually using #[doc(hidden)]
but that would be the same number of lines. I think they would all be suppressed with #[doc(hidden)]
on the enum but then we wouldn't get a doc for that.
bors try |
bors try |
tryAlready running a review |
tryBuild failed
|
bors r+ |
942: Deny missing docs in runtime core and add missing docs r=bjfish a=bjfish <!-- Prior to submitting a PR, review the CONTRIBUTING.md document for recommendations on how to test: https://github.com/wasmerio/wasmer/blob/master/CONTRIBUTING.md#pull-requests --> # Description Deny missing docs in runtime core and add missing docs <!-- Provide details regarding the change including motivation, links to related issues, and the context of the PR. --> # Review - [x] Add a short description of the the change to the CHANGELOG.md file Co-authored-by: Brandon Fish <[email protected]>
Canceled |
bors r+ |
942: Deny missing docs in runtime core and add missing docs r=bjfish a=bjfish <!-- Prior to submitting a PR, review the CONTRIBUTING.md document for recommendations on how to test: https://github.com/wasmerio/wasmer/blob/master/CONTRIBUTING.md#pull-requests --> # Description Deny missing docs in runtime core and add missing docs <!-- Provide details regarding the change including motivation, links to related issues, and the context of the PR. --> # Review - [x] Add a short description of the the change to the CHANGELOG.md file Co-authored-by: Brandon Fish <[email protected]>
Build succeeded
|
👏 |
Description
Deny missing docs in runtime core and add missing docs
Review