From b7c6589864f4dd5b9257b3e21359c6ae26d58b06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20M=2E=20Bezerra?= Date: Wed, 10 Nov 2021 10:09:54 -0300 Subject: [PATCH] Small docs update --- src/lib.rs | 2 +- src/utils/mod.rs | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 5644bf4..9fa58cb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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)] diff --git a/src/utils/mod.rs b/src/utils/mod.rs index edb97c8..1558478 100644 --- a/src/utils/mod.rs +++ b/src/utils/mod.rs @@ -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;