diff options
author | Sverker Eriksson <[email protected]> | 2016-01-14 16:10:38 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-01-14 16:10:38 +0100 |
commit | 43a7421c36d3feddb238b92426f938f11ef91174 (patch) | |
tree | 7da9f735a2f6e8636e92d3eb0cc3278733304c10 /erts/doc/src/erlang.xml | |
parent | 7cf9a621c5280a3e97967c4c63ab6ca1adde69c3 (diff) | |
download | otp-43a7421c36d3feddb238b92426f938f11ef91174.tar.gz otp-43a7421c36d3feddb238b92426f938f11ef91174.tar.bz2 otp-43a7421c36d3feddb238b92426f938f11ef91174.zip |
erts: Correct faulty doc for erlang:trace/3
The entire MFA tuple is replaced with 0, not just Arity.
Diffstat (limited to 'erts/doc/src/erlang.xml')
-rw-r--r-- | erts/doc/src/erlang.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/doc/src/erlang.xml b/erts/doc/src/erlang.xml index c37ed3bea5..20184bd7f3 100644 --- a/erts/doc/src/erlang.xml +++ b/erts/doc/src/erlang.xml @@ -8182,14 +8182,14 @@ timestamp() -> <p>When <c>Pid</c> is scheduled to run. The process runs in function <c>{M, F, Arity}</c>. On some rare occasions, the current function cannot be determined, - then the last element <c>Arity</c> is <c>0</c>.</p> + then the last element is <c>0</c>.</p> </item> <tag><c>{trace, Pid, out, {M, F, Arity} | 0}</c></tag> <item> <p>When <c>Pid</c> is scheduled out. The process was running in function {M, F, Arity}. On some rare occasions, the current function cannot be determined, then the last - element <c>Arity</c> is <c>0</c>.</p> + element is <c>0</c>.</p> </item> <tag><c>{trace, Pid, gc_start, Info}</c></tag> <item> |