mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-29 01:10:04 +02:00
fix lint issue
This commit is contained in:
parent
7f43138665
commit
9f7fa32820
2 changed files with 3 additions and 3 deletions
|
@ -9934,7 +9934,7 @@ var commands = {
|
||||||
},
|
},
|
||||||
|
|
||||||
loop: function(callback, context) {
|
loop: function(callback, context) {
|
||||||
_.each(commandConfig, function (config, name) { callback(config, name, 'git') });
|
_.each(commandConfig, function (config, name) { callback(config, name, 'git'); });
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -23821,7 +23821,7 @@ var commands = {
|
||||||
},
|
},
|
||||||
|
|
||||||
loop: function(callback, context) {
|
loop: function(callback, context) {
|
||||||
_.each(commandConfig, function (config, name) { callback(config, name, 'git') });
|
_.each(commandConfig, function (config, name) { callback(config, name, 'git'); });
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -65,7 +65,7 @@ var commands = {
|
||||||
},
|
},
|
||||||
|
|
||||||
loop: function(callback, context) {
|
loop: function(callback, context) {
|
||||||
_.each(commandConfig, function (config, name) { callback(config, name, 'git') });
|
_.each(commandConfig, function (config, name) { callback(config, name, 'git'); });
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue