summaryrefslogtreecommitdiffstats
path: root/libraries/progressbar
diff options
context:
space:
mode:
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
commit05be3f2bad35ac2fc0caaf7be52679409f9f978d (patch)
tree236533108f1b92248262a26163e722574315ca5b /libraries/progressbar
parent297313af41846c49eabed321d4b3785b74fdc91f (diff)
downloadslackbuilds-05be3f2bad35ac2fc0caaf7be52679409f9f978d.tar.gz
slackbuilds-05be3f2bad35ac2fc0caaf7be52679409f9f978d.tar.xz
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/README21
1 files changed, 11 insertions, 10 deletions
diff --git a/libraries/progressbar/README b/libraries/progressbar/README
index 0f929b1e91..aaa49354d5 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.