diff options
author | B. Watson <yalhcru@gmail.com> | 2022-03-13 16:34:23 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-03-13 16:34:23 -0400 |
commit | 05be3f2bad35ac2fc0caaf7be52679409f9f978d (patch) | |
tree | 236533108f1b92248262a26163e722574315ca5b /libraries/progressbar | |
parent | 297313af41846c49eabed321d4b3785b74fdc91f (diff) |
libraries/progressbar: Wrap README at 72 columns.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'libraries/progressbar')
-rw-r--r-- | libraries/progressbar/README | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/libraries/progressbar/README b/libraries/progressbar/README index 0f929b1e91a3d..aaa49354d570d 100644 --- a/libraries/progressbar/README +++ b/libraries/progressbar/README @@ -1,14 +1,15 @@ -This library provides a text mode progressbar. This is typically used -to display the progress of a long running operation, providing a visual -clue that processing is underway. +This library provides a text mode progressbar. This is typically +used to display the progress of a long running operation, providing a +visual clue that processing is underway. -The ProgressBar class manages the progress, and the format of the line -is given by a number of widgets. A widget is an object that may display -diferently depending on the state of the progress. There are three types -of widget: - a string, which always shows itself; - a ProgressBarWidget, -which may return a diferent value every time it's update method is called; -and - a ProgressBarWidgetHFill, which is like ProgressBarWidget, except -it expands to fill the remaining width of the line. +The ProgressBar class manages the progress, and the format of the +line is given by a number of widgets. A widget is an object that +may display diferently depending on the state of the progress. There +are three types of widget: - a string, which always shows itself; - +a ProgressBarWidget, which may return a diferent value every time it's +update method is called; and - a ProgressBarWidgetHFill, which is like +ProgressBarWidget, except it expands to fill the remaining width of +the line. The progressbar module is very easy to use, yet very powerful. And automatically supports features like auto-resizing when available. |