aboutsummaryrefslogtreecommitdiffstats
path: root/erts
diff options
context:
space:
mode:
authorHenrik Nord <[email protected]>2015-06-05 14:59:17 +0200
committerHenrik Nord <[email protected]>2015-06-05 14:59:17 +0200
commite6e7ae017ef83ace6e5d303a3860245d623d173a (patch)
treeb777962ff718eed180f4da9a7f38ae470db83800 /erts
parent66097231a9ab3f909b2608eb16f7a08bed0315b3 (diff)
parentad68ade1dc499a2988db247c5e88122da5bac7fe (diff)
downloadotp-e6e7ae017ef83ace6e5d303a3860245d623d173a.tar.gz
otp-e6e7ae017ef83ace6e5d303a3860245d623d173a.tar.bz2
otp-e6e7ae017ef83ace6e5d303a3860245d623d173a.zip
Merge branch 'henrik/typo-fix-branch'
* henrik/typo-fix-branch: Fixing typo
Diffstat (limited to 'erts')
-rw-r--r--erts/doc/src/init.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/doc/src/init.xml b/erts/doc/src/init.xml
index 09b5493341..c5a1a92b92 100644
--- a/erts/doc/src/init.xml
+++ b/erts/doc/src/init.xml
@@ -248,7 +248,7 @@
evaluation), Erlang stops with an error message. Here is an
example that seeds the random number generator:</p>
<pre>
-% <input>erl -eval '{X,Y,Z}' = now(), random:seed(X,Y,Z).'</input></pre>
+% <input>erl -eval '{X,Y,Z} = now(), random:seed(X,Y,Z).'</input></pre>
<p>This example uses Erlang as a hexadecimal calculator:</p>
<pre>
% <input>erl -noshell -eval 'R = 16#1F+16#A0, io:format("~.16B~n", [R])' \\</input>