Skip to content

Commit abbc9bd

Browse files
committed
Change notiLike to notIlike
1 parent cf1d697 commit abbc9bd

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/node/valueExpression.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ var ValueExpressionMixin = function() {
147147
like : binaryMethod('LIKE'),
148148
notLike : binaryMethod('NOT LIKE'),
149149
ilike : binaryMethod('ILIKE'),
150-
notiLike : binaryMethod('NOT ILIKE'),
150+
notIlike : binaryMethod('NOT ILIKE'),
151151
in : inMethod,
152152
notIn : notInMethod,
153153
between : ternaryMethod('BETWEEN', 'AND'),

test/binary-clause-tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ test('operators', function() {
3535
assert.equal(Foo.baz.regex(1).operator, '~');
3636
assert.equal(Foo.baz.notRegex(1).operator, '!~');
3737
assert.equal(Foo.baz.ilike('asdf').operator, 'ILIKE');
38-
assert.equal(Foo.baz.notiLike('asdf').operator, 'NOT ILIKE');
38+
assert.equal(Foo.baz.notIlike('asdf').operator, 'NOT ILIKE');
3939
});

0 commit comments

Comments
 (0)