Skip to content

Commit 719a62d

Browse files
author
benholloway
committed
minor tweaks
1 parent ef4e241 commit 719a62d

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var defaultOptions = require('./lib/default-options'),
99
parseOptions = require('./lib/parse-options');
1010

1111
/**
12-
* Create a set of methods that yield webpack configurator(s).
12+
* Create a set of accessors that yield webpack configurator(s).
1313
* @param {...object} [options] Any number of options hashes to be merged
1414
* @returns {{app:function, test:function, release:function, resolve:function}} A new instance
1515
*/

lib/default-options.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict';
2+
13
function defaultOptions() {
24
return {
35
appDir : './app',

lib/parse-options.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict';
2+
13
var snakeCase = require('snake-case');
24

35
function parseOptions(options, defaults) {

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Some explanation:
118118

119119
In the example you can see that more than one configuration may be passed to `angularity()`. This means `process.env` may be passed in entirety.
120120

121-
Angularity will automatically convert any upper-case option `SOME_OPTION` to camel-case `someOption` and parse strings to the correct type.
121+
The solution will automatically convert any upper-case option `SOME_OPTION` to camel-case `someOption` and parse strings to the correct type.
122122

123123
* **Option `globals`**
124124

0 commit comments

Comments
 (0)