You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Module-level doc comments should be added to the binary module (main.rs). This will act as the help documentation and will eventually be hosted on this project's GitHub pages. The comments should include more advanced usage examples and details.
The text was updated successfully, but these errors were encountered:
The usage examples from the README are slowly being moved to the module
doc comments for the binary. The README should provide high level
"getting started" documentation and the usage examples are more
appropriate for a tutorial. The module-level doc comments are being
created in a tutorial style. See #7.
The "app" components are moved to their own `app` module. This makes the
`main.rs` very short and sweet, which leaves plenty of room for writing
application-level documentation in the form of module-level doc comments
to be added without making the file too large.
This also allows the visibility of some modules to be changed to
private, which highlighted some functions, methods, and constants were
unused. This is related to #6 and #7.
Module-level doc comments should be added to the binary module (main.rs). This will act as the help documentation and will eventually be hosted on this project's GitHub pages. The comments should include more advanced usage examples and details.
The text was updated successfully, but these errors were encountered: