From 9e01adc964a5b19c5f78877cbeeb331c722b1ca7 Mon Sep 17 00:00:00 2001 From: Voker57 Date: Mon, 8 Jun 2020 11:14:40 +0300 Subject: Replace leftover docs in progress bar module (#396) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Replace leftover docs in progress bar module * Fix consistency of `ProgressBar` docs Co-authored-by: Héctor Ramón Jiménez --- glow/src/widget/progress_bar.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'glow/src') diff --git a/glow/src/widget/progress_bar.rs b/glow/src/widget/progress_bar.rs index 5782103c..a636a3a6 100644 --- a/glow/src/widget/progress_bar.rs +++ b/glow/src/widget/progress_bar.rs @@ -1,9 +1,9 @@ -//! Allow your users to perform actions by pressing a button. +//! Allow your users to visually track the progress of a computation. //! -//! A [`Button`] has some local [`State`]. +//! A [`ProgressBar`] has a range of possible values and a current value, +//! as well as a length, height and style. //! -//! [`Button`]: type.Button.html -//! [`State`]: struct.State.html +//! [`ProgressBar`]: type.ProgressBar.html use crate::Renderer; pub use iced_graphics::progress_bar::{Style, StyleSheet}; -- cgit