typo in docstring

This commit is contained in:
Sean Corfield 2021-12-04 09:39:43 -08:00
parent 8118f5448e
commit e562329669

View file

@ -648,8 +648,8 @@
(full-join [:table :t] [:= :foo.id :t.foo_id])
Produces:
INNER JOIN table ON foo.id = table.foo_id
INNER JOIN table AS t ON foo.id = t.foo_id"
FULL JOIN table ON foo.id = table.foo_id
FULL JOIN table AS t ON foo.id = t.foo_id"
[& args]
(generic :full-join args))