-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
show mutex module doc, add method examples #2405
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.
I have a few comments.
Co-Authored-By: Taiki Endo <te316e89@gmail.com>
updated |
It looks like you have some failing tests. |
thanks, updated. |
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.
I compiled it locally and had a read-through. I have commented anything I noticed grammar-wise below.
Co-Authored-By: Alice Ryhl <alice@ryhl.io>
Co-Authored-By: Taiki Endo <te316e89@gmail.com>
Co-Authored-By: Alice Ryhl <alice@ryhl.io>
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.
I think this looks good now. 👍
@taiki-e Do you want another chance at reviewing this before I merge it? |
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.
LGTM aside from a few small nits.
Co-Authored-By: Taiki Endo <te316e89@gmail.com>
Motivation
Mutex module doc is not showing, doc is using inner doc comments, but the
Mutex
mod is privateSolution
this PR makes it visible again by switching the inner doc comments with outer doc comments.
This Pr also adds examples to Mutex's methods