-
Notifications
You must be signed in to change notification settings - Fork 21
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
Converting docstrings to NatSpec format #160
Converting docstrings to NatSpec format #160
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 job
-
Missing a cap letter for param and return description, for instance:
@param test this is a test
must be@param test This is a test
-
Short description must be in imperative mood:
@notice Returns something
must be@notice Return something
-
If possible, try to add an article in param and return description:
@param test Test
must be@param test The test
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
It took me around 3 hours. |
No description provided.