Skip to content

Commit

Permalink
comment typos
Browse files Browse the repository at this point in the history
  • Loading branch information
logicalparadox committed Jun 11, 2012
1 parent 075be6a commit 5ff728e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -2,7 +2,7 @@

# Electron

> A simple argument-parsing and program framework for [node.js](http://nodejs.org) command-line interfaces.
> A simple command-line interface framework for [node.js](http://nodejs.org).
#### Features

Expand Down Expand Up @@ -54,7 +54,7 @@ argv.mode('m', 'minify'); // true
argv.param('o', 'out'); // 'saved.min.js'
```

Recommend reading the "Argument Parsing" section of the
Recommend reading the "Argument Parsing Utility" section of the
[documentation](http://alogicalpardox.com/electron)
to learn about the methodologies and specifics of each of the helpers.

Expand Down Expand Up @@ -105,6 +105,7 @@ program.parse();
```

Your `-h, --help` and `-v, --version` will be generated for you automatically.

Recommend reading the "Program Framework" and "Constructing Commands" sections
of the [documentation](http://alogicalpardox.com/electron)
to learn about all of the available chainable commands and theming options
Expand Down
8 changes: 4 additions & 4 deletions lib/electron/args.js
Expand Up @@ -11,7 +11,7 @@
module.exports = Args;

/**
* ## Argument Parsing
* ## Argument Parsing Utility
*
* The electron argument parser takes the node.js standard
* `process.argv` array and constructs an object with helpers
Expand All @@ -30,8 +30,8 @@ module.exports = Args;
* ##### Commands
*
* Commands are the simplest of arguments. They are any arguments
* that are listed to that do not start with the `-` prefix. Essentially,
* they are a list of keys.
* that are listed to that do not start with the `-` or `--` prefix.
* Essentially, they are a list of keys.
*
* // $ node cli.js hello universe
* argv.commands === [ 'hello', 'universe' ];
Expand All @@ -58,7 +58,7 @@ module.exports = Args;
* , w: 'now'
* };
*
* @header Argument Parsing
* @header Argument Parsing Utility
*/

function Args (args) {
Expand Down

0 comments on commit 5ff728e

Please sign in to comment.