From b1158deeadfd13c6973438bae9541a39e606d3a7 Mon Sep 17 00:00:00 2001 From: Sean Hussey Date: Fri, 5 Dec 2014 16:37:26 -0500 Subject: [PATCH] Fixed typos. --- README.md | 6 +++--- lib/forever/cli.js | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c4aab78d..c25f5dbd 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 @@ -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] diff --git a/lib/forever/cli.js b/lib/forever/cli.js index 52dff203..bb486708 100644 --- a/lib/forever/cli.js +++ b/lib/forever/cli.js @@ -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', @@ -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]',