From f072b4b4c235171fb00dba8b332d3066c33ad920 Mon Sep 17 00:00:00 2001 From: changsun20 <110759360+changsun20@users.noreply.github.com> Date: Sun, 15 Jun 2025 17:58:15 +0800 Subject: [PATCH] docs: fix typo in introduction --- docs/introduction/clojure-in-15-minutes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/introduction/clojure-in-15-minutes.md b/docs/introduction/clojure-in-15-minutes.md index 0fc7924b1..32b7a1f00 100644 --- a/docs/introduction/clojure-in-15-minutes.md +++ b/docs/introduction/clojure-in-15-minutes.md @@ -153,7 +153,7 @@ A predicate is a function that returns a boolean `true` or `false` value and by The most common data collections in Clojure: * `(1 2 "three")` or `(list 1 2 "three")` - a list of values read from start to end (sequential access) -* `[1 2 "three"]` or `(list 1 2 "three")` - a vector of values with index (random access) +* `[1 2 "three"]` or `(vector 1 2 "three")` - a vector of values with index (random access) * `{:key "value"}` or `(hash-map :key "value")` - a hash-map with zero or more key value pairs (associative relation) * `#{1 2 "three"}` or `(set 1 2 "three")` - a unique set of values