Skip to content

Commit fc59812

Browse files
committed
Fix tuple docstring
Thanks Vincent Cantin for spotting it
1 parent c4873c3 commit fc59812

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/clojure/clojure/test/check/generators.cljc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@
526526
527527
Examples:
528528
529-
(def t (tuple gen/small-integer gen/boolean))
529+
(def t (gen/tuple gen/small-integer gen/boolean))
530530
(sample t)
531531
;; => ([1 true] [2 true] [2 false] [1 false] [0 true] [-2 false] [-6 false]
532532
;; => [3 true] [-4 false] [9 true]))"

0 commit comments

Comments
 (0)