Skip to content
This repository was archived by the owner on Nov 15, 2017. It is now read-only.

Commit fd2f4f0

Browse files
committed
fixed comments
1 parent ba84fe6 commit fd2f4f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/abp-filters.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ var findGoodToken = function(s) {
122122
return matches;
123123
}
124124
}
125-
// No good token found, just return the first token found
125+
// No good token found, just return the first token from left
126126
reToken.lastIndex = 0;
127127
return reToken.exec(s);
128128
};
@@ -168,7 +168,7 @@ var add = function(s) {
168168
return false;
169169
}
170170

171-
// Index based on 1st token
171+
// Index based on 1st good token
172172
var matches = findGoodToken(s);
173173
if ( !matches ) {
174174
return false;

0 commit comments

Comments
 (0)