From e5623296693200ad9d198435bb30a949523b38f6 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sat, 4 Dec 2021 09:39:43 -0800 Subject: [PATCH] typo in docstring --- src/honey/sql/helpers.cljc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/honey/sql/helpers.cljc b/src/honey/sql/helpers.cljc index 6fa3f6d..1e3a30a 100644 --- a/src/honey/sql/helpers.cljc +++ b/src/honey/sql/helpers.cljc @@ -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))