aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorConstantin Rack <[email protected]>2015-10-10 00:06:28 +0200
committerRickard Green <[email protected]>2016-04-27 11:25:26 +0200
commit4196b0db4cadbddb41f460320fca76efcf9268e1 (patch)
tree05b168a833709084ab522171a7df46431ed00bbd
parent98647fcc1632f60871adee20031e294e5d5b6eb0 (diff)
downloadotp-4196b0db4cadbddb41f460320fca76efcf9268e1.tar.gz
otp-4196b0db4cadbddb41f460320fca76efcf9268e1.tar.bz2
otp-4196b0db4cadbddb41f460320fca76efcf9268e1.zip
Fix typo in description of EPMD_DUMP_REQ response
According to the source code, there is a space before the newline for unused nodes and no space before the newline for active ones. In current documentation, it is exactly opposite. This commit fixes the documentation to match with source code.
-rw-r--r--erts/doc/src/erl_dist_protocol.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/doc/src/erl_dist_protocol.xml b/erts/doc/src/erl_dist_protocol.xml
index e1a58856f3..c35098cf27 100644
--- a/erts/doc/src/erl_dist_protocol.xml
+++ b/erts/doc/src/erl_dist_protocol.xml
@@ -364,14 +364,14 @@ If Result > 0, the packet only consists of [119, Result].
NodeInfo is, as expressed in Erlang:
</p>
<code>
- io:format("active name ~ts at port ~p, fd = ~p ~n",
+ io:format("active name ~ts at port ~p, fd = ~p~n",
[NodeName, Port, Fd]).
</code>
<p>
or
</p>
<code>
- io:format("old/unused name ~ts at port ~p, fd = ~p~n",
+ io:format("old/unused name ~ts at port ~p, fd = ~p ~n",
[NodeName, Port, Fd]).
</code>