typo in docstring
This commit is contained in:
parent
8118f5448e
commit
e562329669
1 changed files with 2 additions and 2 deletions
|
|
@ -648,8 +648,8 @@
|
||||||
(full-join [:table :t] [:= :foo.id :t.foo_id])
|
(full-join [:table :t] [:= :foo.id :t.foo_id])
|
||||||
|
|
||||||
Produces:
|
Produces:
|
||||||
INNER JOIN table ON foo.id = table.foo_id
|
FULL JOIN table ON foo.id = table.foo_id
|
||||||
INNER JOIN table AS t ON foo.id = t.foo_id"
|
FULL JOIN table AS t ON foo.id = t.foo_id"
|
||||||
[& args]
|
[& args]
|
||||||
(generic :full-join args))
|
(generic :full-join args))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue