File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ WOQL.opt = function(query){ return new WOQLQuery().opt(query); }
18
18
WOQL . from = function ( dburl , query ) { return new WOQLQuery ( ) . from ( dburl , query ) ; }
19
19
WOQL . into = function ( dburl , query ) { return new WOQLQuery ( ) . into ( dburl , query ) ; }
20
20
WOQL . limit = function ( limit , query ) { return new WOQLQuery ( ) . limit ( limit , query ) ; }
21
- WOQL . start = function ( start , query ) { return new WOQLQuery ( ) . start ( limit , query ) ; }
21
+ WOQL . start = function ( start , query ) { return new WOQLQuery ( ) . start ( start , query ) ; }
22
22
WOQL . select = function ( ...list ) { return new WOQLQuery ( ) . select ( ...list ) ; }
23
23
WOQL . or = function ( ...queries ) { return new WOQLQuery ( ) . or ( ...queries ) ; }
24
24
WOQL . and = function ( ...queries ) { return new WOQLQuery ( ) . and ( ...queries ) ; }
You can’t perform that action at this time.
0 commit comments