Skip to content

Commit 89b5850

Browse files
author
Ryan Neufeld
committed
Merge pull request clojure-cookbook#469 from dz-cies/patch2
Fix an ArityException in 6.04
2 parents 99ab6d6 + 0856f32 commit 89b5850

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

06_databases/6-04_korma.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ must match the names of the columns in the database:
8989
[source,clojure]
9090
----
9191
(insert posts
92-
(values nil {:title "First post" :content "blah blah blah"}))
92+
(values {:title "First post" :content "blah blah blah"}))
9393
----
9494

9595
To retrieve values from the database, query using +select+. Successful

0 commit comments

Comments
 (0)