We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We need to have good documentation across all of the public functions and data structures.
We should have something like this:
/// Some short descriptive title /// /// ## Overview /// more details.... /// /// ## Arguments ... /// ## Panics (if appropriate) ... /// ## Errors (if appropriate) /// # Returns ///
All need to have a brief description and a good overview, maybe including an example.
The arguments and returns values should be described.
If a function can panic or return an error, then these should be documented.
If a public function is unsafe this needs to be documented - and potentially should be hidden behind a feature flag.
unsafe
The text was updated successfully, but these errors were encountered:
OWissett
asinineAbbreviations
No branches or pull requests
We need to have good documentation across all of the public functions and data structures.
We should have something like this:
All need to have a brief description and a good overview, maybe including an example.
The arguments and returns values should be described.
If a function can panic or return an error, then these should be documented.
If a public function is
unsafe
this needs to be documented - and potentially should be hidden behind a feature flag.The text was updated successfully, but these errors were encountered: