-
-
Notifications
You must be signed in to change notification settings - Fork 5.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
Add docstrings for SHA module #36777
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.
Welcome @chris-b1, and thanks for working on this. I'm not an expert on the matter, just saw some typos. Generally, I believe we consider phrases in docstrings as full sentences, so they should be closed by a period.
Thanks for the review @dkarrasch - fixed those sentences/typos |
stdlib/SHA/src/SHA.jl
Outdated
The SHA module provides hashing functionality for SHA1, SHA2 and SHA3 algorithms. | ||
|
||
They are implemented as both pure functions for hashing single pieces of data, | ||
or a stateful context which can be updated with the `update!` function 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.
Trailing whitespace here.
progress towards #31202