Skip to content

Commit

Permalink
fixed some typos in tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin Waeselynck committed Oct 25, 2018
1 parent d5d5490 commit 53a278c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/d2q/test/example/persons.clj
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
;;;; Normalized query form

;; The query syntax that we used above is actually a shorthand syntax
;; for a more verbosed 'normalized' form.
;; for a more verbose 'normalized' form.

;; The above query is equivalent to this query in normalized form:

Expand Down Expand Up @@ -526,7 +526,7 @@
(for [[ent-i person-entity] j+entities
:let [person-id (:person-id person-entity)
person-row (get (:myapp.db/persons-by-id db) person-id)]
:when (some? person-id)
:when (some? person-row)
:let [father-id (:myapp.person/father-id person-row)
mother-id (:myapp.person/mother-id person-row)]
[fcall-i fcall] i+fcalls
Expand Down

0 comments on commit 53a278c

Please sign in to comment.