Skip to content

Commit 60dd235

Browse files
committed
Documentation typos.
1 parent 535e427 commit 60dd235

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/model_builder.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ outside of a `:condition-model` field, you need to add your own generator to the
103103
;; A set of keywords.
104104
(h/set-of (h/fn keyword?))
105105

106-
;; Persons by name.
107-
(h/map-of (h/fn string?) (h/ref 'person))
106+
;; Map of id->name.
107+
(h/map-of (h/fn int?) (h/fn string?))
108108

109109
;; Sequence of numbers, either in a list or in a vector.
110110
(h/sequence-of (h/fn int?))
@@ -118,7 +118,7 @@ with a `:coll-type` set to `:list` or `:vector`.
118118
(h/list-of (h/fn int?))
119119

120120
;; A vector of numbers.
121-
(h/sequence-of (h/fn int?))
121+
(h/vector-of (h/fn int?))
122122
```
123123

124124
### Collections with entries

0 commit comments

Comments
 (0)