diff options
author | Hans Bolinder <[email protected]> | 2010-02-10 10:10:17 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-02-10 10:10:17 +0000 |
commit | a853ee40c6475801ca03c17a11632d48a4992de7 (patch) | |
tree | 0e8cae738b322877dd268831a7eb6d318565ca7a /erts/doc/src/erlang.xml | |
parent | fcdb09923b20934123f52814458c065a1dd27cf3 (diff) | |
download | otp-a853ee40c6475801ca03c17a11632d48a4992de7.tar.gz otp-a853ee40c6475801ca03c17a11632d48a4992de7.tar.bz2 otp-a853ee40c6475801ca03c17a11632d48a4992de7.zip |
OTP-8422 Removed bogus "\011" character sequence in documentation.
Diffstat (limited to 'erts/doc/src/erlang.xml')
-rw-r--r-- | erts/doc/src/erlang.xml | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/erts/doc/src/erlang.xml b/erts/doc/src/erlang.xml index 207aabca35..8e2c02e0ce 100644 --- a/erts/doc/src/erlang.xml +++ b/erts/doc/src/erlang.xml @@ -774,10 +774,10 @@ false</pre> erlang:demonitor(MonitorRef), receive -\011{_, MonitorRef, _, _, _} -> -\011 true + {_, MonitorRef, _, _, _} -> + true after 0 -> -\011 true + true end</code> </item> <tag><c>info</c></tag> @@ -2325,13 +2325,13 @@ os_prompt%</pre> other. Values beginning with an uppercase letter is not part of the result.</p> <code type="none"> -\011total = processes + system -\011processes = processes_used + ProcessesNotUsed -\011system = atom + binary + code + ets + OtherSystem -\011atom = atom_used + AtomNotUsed + total = processes + system + processes = processes_used + ProcessesNotUsed + system = atom + binary + code + ets + OtherSystem + atom = atom_used + AtomNotUsed -\011RealTotal = processes + RealSystem -\011RealSystem = system + MissedSystem</code> + RealTotal = processes + RealSystem + RealSystem = system + MissedSystem</code> <p>More tuples in the returned list may be added in the future.</p> <note> <p>The <c>total</c> value is supposed to be the total amount @@ -6965,10 +6965,10 @@ true</pre> unlink(Id), receive -\011{'EXIT', Id, _} -> -\011 true + {'EXIT', Id, _} -> + true after 0 -> -\011 true + true end</code> <note> <p>Prior to OTP release R11B (erts version 5.5) <c>unlink/1</c> |