diff options
author | Patrik Nyblom <[email protected]> | 2012-02-03 17:02:07 +0100 |
---|---|---|
committer | Patrik Nyblom <[email protected]> | 2012-02-07 16:01:51 +0100 |
commit | a02909a11a33880b486135b396aabfd3060b8d8d (patch) | |
tree | aa20fea8c921b3460f8868ce905a4e2243d34dac /erts/doc/src | |
parent | 9d870a01dd2fc331b987905b981c52f57a44669f (diff) | |
download | otp-a02909a11a33880b486135b396aabfd3060b8d8d.tar.gz otp-a02909a11a33880b486135b396aabfd3060b8d8d.tar.bz2 otp-a02909a11a33880b486135b396aabfd3060b8d8d.zip |
Correct docs, comments and dialyzer tests
Update preloaded erlang.beam
Removed stray error in dialyzer test suite - different error message
with the new specs.
Diffstat (limited to 'erts/doc/src')
-rw-r--r-- | erts/doc/src/erlang.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/erts/doc/src/erlang.xml b/erts/doc/src/erlang.xml index e5ea517492..c25e05c6a0 100644 --- a/erts/doc/src/erlang.xml +++ b/erts/doc/src/erlang.xml @@ -1618,6 +1618,10 @@ os_prompt%</pre> <fsummary>Convert from text representation to an atom</fsummary> <desc> <p>Returns the atom whose text representation is <c><anno>String</anno></c>.</p> + <p><c><anno>String</anno></c> may only contain ISO-latin-1 + characterns (i.e. numbers below 256) as the current + implementation does not allow unicode characters >= 256 in + atoms.</p> <pre> > <input>list_to_atom("Erlang").</input> 'Erlang'</pre> |