aboutsummaryrefslogtreecommitdiffstats
path: root/erts/doc
diff options
context:
space:
mode:
authorNate Bartley <Nato [email protected]>2015-05-07 10:32:43 -0700
committerNate Bartley <Nato [email protected]>2015-05-07 10:32:43 -0700
commit5f1ce6aefcc860906506ced26fe666faf3e82235 (patch)
tree0e960b1b946a459118fe614a8bf5615ddd3baad1 /erts/doc
parentefbfe9602983ff451b864e557bdf3733222b78ba (diff)
downloadotp-5f1ce6aefcc860906506ced26fe666faf3e82235.tar.gz
otp-5f1ce6aefcc860906506ced26fe666faf3e82235.tar.bz2
otp-5f1ce6aefcc860906506ced26fe666faf3e82235.zip
Fixing typo
Diffstat (limited to 'erts/doc')
-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>