Skip to content

Commit a06e645

Browse files
authored
bird-watcher: Fix introduction example (#690)
* bird-watcher: Fix introduction example * Update introduction.md with different types
1 parent c283f00 commit a06e645

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/concept/bird-watcher/.docs/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A `vector` in Clojure is a sequential, indexed, immutable collection of zero or
66
(def empty [])
77
(def single-value [5])
88
(def single-value-alternative (vector 5))
9-
(def three-values [a b c])
9+
(def three-values [1 "a" "b"])
1010
```
1111

1212
Elements can be retrieved from a vector using an index. Clojure vectors are zero-based, meaning that the first element's index is always zero:

0 commit comments

Comments
 (0)