Skip to content

Commit 59f271e

Browse files
committed
1.0.2 typos.
1 parent fd174e0 commit 59f271e

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ The following methods return `this` to allow method chaining.
314314

315315
Groups conditions. Returns `this` for method chaining. There are shorthands for the `AND`, `OR`, `(` and `)` groupings:
316316

317-
WHERE (c1 = 10 AND c2 = 20) OR (c3 >= 30 AND c4 <= 40)
317+
WHERE (c1 = 10 AND c2 = 20) OR (c3 >= 30 AND c4 <= 40)
318318

319319
wb
320320
.push()
@@ -356,13 +356,13 @@ The following methods return `this` to allow method chaining.
356356

357357
Method|SQL operator
358358
:-:|:-:
359-
`e()`|`=`
360-
`ne()`|`!=`
361-
`g()`|`>`
362-
`ge()`|`>=`
363-
`l()`|`<`
364-
`le()`|`<=`
365-
`in()`|`IN`
359+
e()|=
360+
ne()|!=
361+
g()|>
362+
ge()|>=
363+
l()|<
364+
le()|<=
365+
in()|IN
366366

367367
#### <a name="selectBuilder"></a>[SelectBuilder<i class="icon-up"></i>](#cselectBuilder)
368368

@@ -423,9 +423,9 @@ The following methods return `this` to allow method chaining.
423423

424424
Method|JOIN type
425425
-|-
426-
`innerJoin()`|`INNER JOIN`
427-
`leftOuterJoin()`|`LEFT OUTER JOIN`
428-
`rightOuterJoin()`|`RIGHT OUTER JOIN`
426+
innerJoin()|INNER JOIN
427+
leftOuterJoin()|LEFT OUTER JOIN
428+
rightOuterJoin()|RIGHT OUTER JOIN
429429

430430

431431
SELECT c1, c2 FROM table1 LEFT OUTER JOIN table2 ON table1.rowid = table2.rowid;

0 commit comments

Comments
 (0)