Small docs update

This commit is contained in:
João M. Bezerra 2021-11-10 10:09:54 -03:00
parent f09f1cecba
commit b7c6589864
2 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,4 @@
//! This library isn't meant to be published, but used internally by our binary crate `main.rs`.
//! This library is just meant to supply needs for the `ouch` binary crate.
#![warn(missing_docs)]

View File

@ -1,4 +1,7 @@
//! Random and miscellaneous utils used in ouch.
//!
//! In here we have the logic for custom formatting, some file and directory utils, and user
//! stdin interaction helpers.
pub mod colors;
mod formatting;