Skip to content

Commit

Permalink
Indentation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
TomMalbran committed Aug 20, 2013
1 parent 5ce1642 commit 9f3a66a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/search/FindInFiles.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,14 +310,14 @@ define(function (require, exports, module) {
* @return {{files: number, matches: number}}
*/
function _countFilesMatches() {
var numFiles = 0, numMatches = 0;
var numFiles = 0, numMatches = 0;
CollectionUtils.forEach(searchResults, function (item) {
numFiles++;
numMatches += item.matches.length;
});

return {files: numFiles, matches: numMatches};
}
}

/**
* @private
Expand Down

0 comments on commit 9f3a66a

Please sign in to comment.