Skip to content

Commit

Permalink
chore: typos and grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Thombs committed Jul 7, 2015
1 parent a52b116 commit 5ae2ee5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tasks/lib/get-previous-tag.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function getPreviousTag() {
} else if (this.options.tag === false) {
deferred.resolve(false);
} else {
//IF we dont find a previous tag, we get all the commits from the beggining - The bigbang of the code
//IF we dont find a previous tag, we get all the commits from the beginning - The bigbang of the code
debug('calling git tag command');
child.exec(this.cmd.gitTag, cmdDone.bind(null, deferred));
}
Expand Down
2 changes: 1 addition & 1 deletion tasks/lib/get-repo-url.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function getRepoUrl() {
if (this.options.repo_url) {
deferred.resolve(this.options.repo_url);
} else {
//IF we dont find a previous tag, we get all the commits from the beggining - The bigbang of the code
//IF we dont find a previous tag, we get all the commits from the beginning - The bigbang of the code
debug('calling git repo url command');
child.exec(this.cmd.gitRepoUrl, cmdDone.bind(null, deferred));
}
Expand Down
2 changes: 1 addition & 1 deletion tasks/lib/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function getRepoSuccess(deferred, url) {

function getRepoFailure(deferred, err) {
this.message('not remote');
deferred.reject("Sorry, you doesn't have configured any origin remote or passed a `repo_url` config value");
deferred.reject("Sorry, you've not configured an origin remote or passed a `repo_url` config value");
}

function init(params) {
Expand Down
2 changes: 1 addition & 1 deletion tasks/lib/print-salute.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var debug = require('debug')('changelog:printSalute');
function printSalute(stream) {
debug('printing salute');
stream.write('\n\n---\n');
stream.write('<sub><sup>*Generated with [git-changelog](https://github.com/rafinskipg/git-changelog). If you have any problem or suggestion, create an issue.* :) **Thanks** </sub></sup>');
stream.write('<sub><sup>*Generated with [git-changelog](https://github.com/rafinskipg/git-changelog). If you have any problems or suggestions, create an issue.* :) **Thanks** </sub></sup>');
}

module.exports = printSalute;

0 comments on commit 5ae2ee5

Please sign in to comment.