From 5bd775146fec362b59953a4cb43ed5fcc64d73cf Mon Sep 17 00:00:00 2001 From: Uttarayan Mondal Date: Wed, 10 Mar 2021 01:01:56 +0530 Subject: [PATCH] Minor changes --- .github/workflows/docs.yaml | 2 +- src/lib.rs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index faff216..c5d9b7d 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -34,6 +34,6 @@ jobs: cp -r target/doc ./docs cp index.html docs/ - git commit -am "Generated docs from github-actions[bot]" + git commit -am "Auto Generated Documentation" git add docs git push diff --git a/src/lib.rs b/src/lib.rs index 1bdf3dd..7e29691 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,4 @@ -//! Example program with default formatting -//! Source [ntext-rs](https://github.com/uttarayan21/ntext-rs) +//! Example program with default formatting //!```rust //!extern crate ntext; //!use ntext::to_text; @@ -18,8 +17,9 @@ //! assert_eq!(to_text!(34123, &Formatting::with_seperator("#").capitalize()),"Thirty#Four#Thousand#One#Hundred#Twenty#Three"); //!} //!``` -//! This macro will also return an empty string on input zero -//! You can also create the Formatting struct manually +//! This macro will also return an empty string on input zero +//! You can also create the Formatting struct manually +//! Source [ntext-rs](https://github.com/uttarayan21/ntext-rs) mod formatting; mod numtext;