summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changes.txt10
1 files changed, 7 insertions, 3 deletions
diff --git a/changes.txt b/changes.txt
index df65720a..cf1696b8 100644
--- a/changes.txt
+++ b/changes.txt
@@ -102,7 +102,10 @@ compile-time literal
(case version
(0.9 1.0 1.1) "History"
1.2 "Right now"
- :sentient "RSN"))
+ :sentient "RSN"
+ "The default"))
+
+The string "The default" represents the default clause and can be any expression, not only a compile-time literal.
== 2.5 Duplicate Key Prevention ==
@@ -116,8 +119,9 @@ hash-set now prevent duplicate keys:
== 2.6 Primitive Vectors ==
-vector-of creates a vector of unboxed Java primitives, which follows
-the contract of Clojure vectors.
+vector-of creates a vector of unboxed Java primitives, which follows the contract of Clojure vectors. It
+takes one keyword argument corresponding to its primitive type that can be any of :int, :long, :float,
+:double, :byte, :short, :boolean, or :char.
== 2.7 Agent Error Handling ==