mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-13 16:14:27 +02:00
Fixed typos in comments and strings
This commit is contained in:
parent
5e8d83536e
commit
694f414e22
21 changed files with 46 additions and 46 deletions
|
@ -401,7 +401,7 @@ var Level = Sandbox.extend({
|
|||
|
||||
doesCommandCountTowardsTotal: function(command) {
|
||||
if (command.get('error')) {
|
||||
// dont count errors towards our count
|
||||
// don't count errors towards our count
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -645,7 +645,7 @@ var Level = Sandbox.extend({
|
|||
};
|
||||
var method = methodMap[command.get('method')];
|
||||
if (!method) {
|
||||
throw new Error('woah we dont support that method yet', method);
|
||||
throw new Error('woah we don\'t support that method yet', method);
|
||||
}
|
||||
|
||||
method.apply(this, [command, defer]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue