summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfogus <mefogus@gmail.com>2010-07-30 10:32:54 -0400
committerStuart Halloway <stu@thinkrelevance.com>2010-08-05 17:02:08 -0400
commit942784ccf8ca2c1be1ee3f3df6a2d22112987b64 (patch)
tree90c99f5a57acf5adbf36645018bda58a14b28e5a
parent626f0cf0795556d78027c21816812c6b9034358e (diff)
Tweaked changes document a bit for case and vector-of
Signed-off-by: Stuart Halloway <stu@thinkrelevance.com>
-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 ==