Fix typo in example

This commit is contained in:
Sean Corfield 2020-05-25 11:36:23 -07:00
parent 7bbc626950
commit 8f6844aa5d

View file

@ -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"])