From cda1de618a4abb44b77ce52275c32acd9eb96013 Mon Sep 17 00:00:00 2001 From: Avril Date: Fri, 24 Jul 2020 03:21:09 +0100 Subject: [PATCH] whoops --- Cargo.toml | 2 +- src/progress.rs | 2 +- src/spinner.rs | 2 +- src/wheel.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 15701a4..950815e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "termprogress" description = "A terminal progress bar renderer with status and spinners" license = "GPL-3.0-or-later" -version = "0.1.0" +version = "0.1.1" authors = ["Avril "] edition = "2018" diff --git a/src/progress.rs b/src/progress.rs index 2b2460d..ffc015e 100644 --- a/src/progress.rs +++ b/src/progress.rs @@ -1,4 +1,4 @@ -///! Progress bar that has a size and also a max size. +//! Progress bar that has a size and also a max size. use super::*; use std::{ diff --git a/src/spinner.rs b/src/spinner.rs index b13a518..ad47688 100644 --- a/src/spinner.rs +++ b/src/spinner.rs @@ -1,4 +1,4 @@ -///! A simple character spinner for bars with no known size +//! A simple character spinner for bars with no known size use super::*; diff --git a/src/wheel.rs b/src/wheel.rs index aeeb9ca..f5df7d4 100644 --- a/src/wheel.rs +++ b/src/wheel.rs @@ -1,4 +1,4 @@ -///! Contains infinite `char` iterators and the type wrapping them, `Wheel`. +//! Contains infinite `char` iterators and the type wrapping them, `Wheel`. /// An infinite repeating series of `char`. Used for `spinner::Spin`. ///