Replace leftover docs in progress bar module (#396)

* Replace leftover docs in progress bar module

* Fix consistency of `ProgressBar` docs

Co-authored-by: Héctor Ramón Jiménez <hector0193@gmail.com>
This commit is contained in:
Voker57 2020-06-08 11:14:40 +03:00 committed by GitHub
parent ca6ff874a1
commit 9e01adc964
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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};