Skip to content

Commit 3836fc2

Browse files
committed
Merge remote-tracking branch 'refs/remotes/sthupukari/master'
2 parents 12f3b56 + 02f2039 commit 3836fc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Parser
5050

5151
The parser only currently supports SELECT queries but is able to produce a Select object with properties for where, group, order, limit. See lib/nodes.coffee for more info of the returned object structure. Calling .toString() on a Select object should give you back a well formatted version of the original SQL input.
5252

53-
tokens = lexer.tokenize('select * from my_table where foo = 'bar')
53+
tokens = lexer.tokenize("select * from my_table where foo = 'bar'")
5454
parser.parse(tokens).toString()
5555

5656
SELECT *
@@ -67,4 +67,4 @@ A lot of the boilerplate and compilation code in this project is borrowed from t
6767
Contributions
6868
-------------
6969

70-
Contributions in the form of pull requests that add syntax support are very welcome but should be supported by both Lexer and Parser level tests.
70+
Contributions in the form of pull requests that add syntax support are very welcome but should be supported by both Lexer and Parser level tests.

0 commit comments

Comments
 (0)