Skip to content
This repository was archived by the owner on May 4, 2024. It is now read-only.

Commit 7a2c9b5

Browse files
0xflotusclaudiahdz
authored andcommittedJan 31, 2020
docs: proofreading (#116)
1 parent ed725f7 commit 7a2c9b5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
 

‎README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ if **stream** isn't a tty and a tty isn't explicitly provided.
4646

4747
If **stream** is a terminal or if you pass in **tty** to **options** then we
4848
will detect terminal resizes and redraw to fit. We do this by watching for
49-
`resize` events on the tty. (To work around a bug in verisons of Node prior
49+
`resize` events on the tty. (To work around a bug in versions of Node prior
5050
to 2.5.0, we watch for them on stdout if the tty is stderr.) Resizes to
5151
larger window sizes will be clean, but shrinking the window will always
5252
result in some cruft.
5353

54-
**IMPORTANT:** If you prevously were passing in a non-tty stream but you still
54+
**IMPORTANT:** If you previously were passing in a non-tty stream but you still
5555
want output (for example, a stream wrapped by the `ansi` module) then you
5656
need to pass in the **tty** option below, as `gauge` needs access to
5757
the underlying tty in order to do things like terminal resizes and terminal
@@ -60,7 +60,7 @@ width detection.
6060
The **options** object can have the following properties, all of which are
6161
optional:
6262

63-
* **updateInterval**: How often gauge updates should be drawn, in miliseconds.
63+
* **updateInterval**: How often gauge updates should be drawn, in milliseconds.
6464
* **fixedFramerate**: Defaults to false on node 0.8, true on everything
6565
else. When this is true a timer is created to trigger once every
6666
`updateInterval` ms, when false, updates are printed as soon as they come
@@ -76,7 +76,7 @@ optional:
7676
* The name of a theme, which will be looked up in the current *themes*
7777
object.
7878
* A configuration object with any of `hasUnicode`, `hasColor` or
79-
`platform` keys, which if wlll be used to override our guesses when making
79+
`platform` keys, which if will be used to override our guesses when making
8080
a default theme selection.
8181

8282
If no theme is selected then a default is picked using a combination of our
@@ -94,7 +94,7 @@ optional:
9494
the gauge starts enabled. If disabled then all update commands are
9595
ignored and no gauge will be printed until you call `.enable()`.
9696
* **Plumbing**: The class to use to actually generate the gauge for
97-
printing. This defaults to `require('gauge/plumbing')` and ordinarly you
97+
printing. This defaults to `require('gauge/plumbing')` and ordinarily you
9898
shouldn't need to override this.
9999
* **cleanupOnExit**: Defaults to true. Ordinarily we register an exit
100100
handler to make sure your cursor is turned back on and the progress bar
@@ -162,7 +162,7 @@ Change the active theme, will be displayed with the next show or pulse. This can
162162
* The name of a theme, which will be looked up in the current *themes*
163163
object.
164164
* A configuration object with any of `hasUnicode`, `hasColor` or
165-
`platform` keys, which if wlll be used to override our guesses when making
165+
`platform` keys, which if will be used to override our guesses when making
166166
a default theme selection.
167167

168168
If no theme is selected then a default is picked using a combination of our
@@ -350,7 +350,7 @@ be be included verbatum in the output, or objects with the following properties:
350350
* *align* – (Default: left) Possible values "left", "right" and "center". Works
351351
as you'd expect from word processors.
352352
* *length* – Provides a single value for both *minLength* and *maxLength*. If both
353-
*length* and *minLength or *maxLength* are specifed then the latter take precedence.
353+
*length* and *minLength or *maxLength* are specified then the latter take precedence.
354354
* *value* – A literal value to use for this template item.
355355
* *default* – A default value to use for this template item if a value
356356
wasn't otherwise passed in.

0 commit comments

Comments
 (0)
This repository has been archived.