Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 671a867

Browse files
author
Ryan Neufeld
committed
Merge pull request clojure-cookbook#431 from stig/patch-1
(hopefully) fix paren balancing error in example
2 parents 15b2441 + 9bba0e0 commit 671a867

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

06_databases/6-11_schema.asciidoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ name, and role, as well as insertions of the three static roles:
5656
:db/id (d/tempid :db.part/db)
5757
:db.install/_attribute :db.part/db}
5858
59-
[:db/add (d/tempid :db.part/user] :db/ident :user.roles/guest)
60-
[:db/add (d/tempid :db.part/user] :db/ident :user.roles/author)
61-
[:db/add (d/tempid :db.part/user] :db/ident :user.roles/editor]))
59+
[:db/add (d/tempid :db.part/user) :db/ident :user.roles/guest]
60+
[:db/add (d/tempid :db.part/user) :db/ident :user.roles/author]
61+
[:db/add (d/tempid :db.part/user) :db/ident :user.roles/editor]])
6262
----
6363

6464
We define a group as having:

0 commit comments

Comments
 (0)