Skip to content

Commit 7645e05

Browse files
ilovecomputerspetebacondarwin
authored andcommitted
docs(filter): add missing semi-colon
Closes angular#4273
1 parent 55422b8 commit 7645e05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ng/filter/filter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ function filterFilter() {
129129
default:
130130
comperator = function(obj, text) {
131131
text = (''+text).toLowerCase();
132-
return (''+obj).toLowerCase().indexOf(text) > -1
132+
return (''+obj).toLowerCase().indexOf(text) > -1;
133133
};
134134
}
135135
var search = function(obj, text){

0 commit comments

Comments
 (0)