aboutsummaryrefslogtreecommitdiffstats
path: root/lib/edoc/doc/overview.edoc
diff options
context:
space:
mode:
authorHenrik Nord <[email protected]>2011-08-16 15:01:22 +0200
committerHenrik Nord <[email protected]>2011-08-16 15:01:32 +0200
commit48d0c4adbe85450f1224311f9b8495affaae9c6a (patch)
treeb7ca1cb97b452768898094eb44ddc6b0286af214 /lib/edoc/doc/overview.edoc
parentf74168772f6eb7765d8cfe0ffcce58273f920bcf (diff)
parent52e430eb1570c0cda49a8070063f1a6a2328578b (diff)
downloadotp-48d0c4adbe85450f1224311f9b8495affaae9c6a.tar.gz
otp-48d0c4adbe85450f1224311f9b8495affaae9c6a.tar.bz2
otp-48d0c4adbe85450f1224311f9b8495affaae9c6a.zip
Merge branch 'rc/edoc-minor' into dev
* rc/edoc-minor: forgot to ensure that xmerl is found in path for include_lib to work fix -spec declaration that doesn't work in R13B04 eliminate warnings about unused imports removed CVS-keywords from source files synchronized with edoc development version OTP-9463
Diffstat (limited to 'lib/edoc/doc/overview.edoc')
-rw-r--r--lib/edoc/doc/overview.edoc7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/edoc/doc/overview.edoc b/lib/edoc/doc/overview.edoc
index bd603b7a13..fa699c6f08 100644
--- a/lib/edoc/doc/overview.edoc
+++ b/lib/edoc/doc/overview.edoc
@@ -1084,10 +1084,11 @@ Details:
the Erlang programming language.</li>
<li>`boolean()' is the subset of `atom()' consisting
of the atoms `true' and `false'.</li>
- <li>`char()' is a subset of
- `integer()' representing character codes.</li>
+ <li>`char()' is the subset of `integer()' representing
+ Unicode character codes: hex 000000-10FFFF.</li>
<li>`tuple()' is the set of all tuples `{...}'.</li>
- <li>`list(T)' is just an alias for `[T]'.</li>
+ <li>`list(T)' is just an alias for `[T]'; list() is an alias
+ for `list(any())', i.e., `[any()]'.</li>
<li>`nil()' is an alias for the empty list `[]'.</li>
<li>`cons(H,T)' is the list constructor. This is usually not
used directly. It is possible to recursively define `list(T)