Skip to content

Commit

Permalink
comment: typo
Browse files Browse the repository at this point in the history
Change-Id: Id719bfa377e2b635889393b782ebc590614969a4
  • Loading branch information
cynron committed Feb 19, 2014
1 parent 1e0af82 commit b701db2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/util/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ utils.size = function(obj) {
};

/**
* Chech a string whether ends with another string
* Check a string whether ends with another string
*/
utils.endsWith = function(str, suffix) {
if (typeof str !== 'string' || typeof suffix !== 'string' ||
Expand All @@ -39,7 +39,7 @@ utils.endsWith = function(str, suffix) {
};

/**
* Chech a string whether starts with another string
* Check a string whether starts with another string
*/
utils.startsWith = function(str, prefix) {
if (typeof str !== 'string' || typeof prefix !== 'string' ||
Expand Down Expand Up @@ -238,4 +238,4 @@ var localIps = function() {
ifaces[dev].forEach(func);
}
return ips;
}();
}();

0 comments on commit b701db2

Please sign in to comment.