From 8f6844aa5dfa32671306d8a318c648270a3b5a99 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Mon, 25 May 2020 11:36:23 -0700 Subject: [PATCH] Fix typo in example --- doc/tips-and-tricks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tips-and-tricks.md b/doc/tips-and-tricks.md index 5b8b08a..38febf3 100644 --- a/doc/tips-and-tricks.md +++ b/doc/tips-and-tricks.md @@ -141,8 +141,8 @@ create table example( ```clojure (execute-one! db-spec - ["insert into example(tags) values (?)" - (into-array String ["tag1" "tag2"])) + ["insert into example(tags) values (?)" + (into-array String ["tag1" "tag2"])]) (execute-one! db-spec ["select * from example limit 1"])