diff --git a/lib/actions/actions.js b/lib/actions/actions.js index 64436014..4cf089c6 100644 --- a/lib/actions/actions.js +++ b/lib/actions/actions.js @@ -90,7 +90,7 @@ actions.copy = function copy(source, destination, process) { * https://github.com/yeoman/generator/issues/350 * * A copy method skipping templating and conflict checking. It will allow copying - * a large amount of files without causing too much recursion errors. You should + * a large amount of files without causing too many recursion errors. You should * never use this method, unless there's no other solution. * * @param {String} source Source file to copy from. Relative to this.sourceRoot() @@ -119,7 +119,7 @@ actions.bulkCopy = function bulkCopy(source, destination, process) { }; /** - * A simple method to read the content of the a file borrowed from Grunt: + * A simple method to read the content of a file borrowed from Grunt: * https://github.com/gruntjs/grunt/blob/master/lib/grunt/file.js * * Discussion and future plans: @@ -161,7 +161,7 @@ actions.write = function write(filepath, content, writeFile) { * to be equal to the source relative to destination. * * Use configured engine to render the provided `source` template at the given - * `destination`. The `destination` path its a template itself and supports variable + * `destination`. The `destination` path is a template itself and supports variable * interpolation. `data` is an optional hash to pass to the template, if undefined, * executes the template in the generator instance context. *