fix progress bar docs to no longer mention buttons (#301)

This commit is contained in:
ethanpailes 2020-04-18 15:12:44 -04:00 committed by GitHub
parent ae546a5b9d
commit 90c3a183d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

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_style::progress_bar::{Style, StyleSheet};