Skip to content

Commit

Permalink
Fixed typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
seanhussey authored and Sean Hussey committed Dec 6, 2014
1 parent cdfa701 commit b1158de
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A simple CLI tool for ensuring that a given script runs continuously (i.e. forev
$ [sudo] npm install forever -g
```

**Note:** If you are using forever _programatically_ you should install [forever-monitor][0].
**Note:** If you are using forever _programmatically_ you should install [forever-monitor][0].

``` bash
$ cd /path/to/your/project
Expand Down Expand Up @@ -56,7 +56,7 @@ You can use forever to run any kind of script continuously (whether it is writte
-n, --number Number of log lines to print
--pidFile The pid file
--uid Process uid, useful as a namespace for processes (must wrap in a string)
eg. forever start --uid "production" app.js
e.g. forever start --uid "production" app.js
forever stop production
--sourceDir The source directory for which SCRIPT is relative to
--workingDir The working directory in which SCRIPT will execute
Expand All @@ -71,7 +71,7 @@ You can use forever to run any kind of script continuously (whether it is writte
--watchDirectory Top-level directory to watch from
--watchIgnore To ignore pattern when watch is enabled (multiple option is allowed)
--killSignal Support exit signal customization (default is SIGKILL),
used for restarting script gracefully eg. --killSignal=SIGTERM
used for restarting script gracefully e.g. --killSignal=SIGTERM
-h, --help You're staring at it
[Long Running Process]
Expand Down
4 changes: 2 additions & 2 deletions lib/forever/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ var help = [
' -n, --number Number of log lines to print',
' --pidFile The pid file',
' --uid Process uid, useful as a namespace for processes (must wrap in a string)',
' eg. forever start --uid "production" app.js',
' e.g. forever start --uid "production" app.js',
' forever stop production',
' --sourceDir The source directory for which SCRIPT is relative to',
' --workingDir The working directory in which SCRIPT will execute',
Expand All @@ -66,7 +66,7 @@ var help = [
' --watchDirectory Top-level directory to watch from',
' --watchIgnore To ignore pattern when watch is enabled (multiple option is allowed)',
' --killSignal Support exit signal customization (default is SIGKILL)',
' used for restarting script gracefully eg. --killSignal=SIGTERM',
' used for restarting script gracefully e.g. --killSignal=SIGTERM',
' -h, --help You\'re staring at it',
'',
'[Long Running Process]',
Expand Down

0 comments on commit b1158de

Please sign in to comment.