diff options
author | Björn Gustavsson <[email protected]> | 2015-12-10 15:45:55 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2015-12-14 15:44:42 +0100 |
commit | 41d147339c65d2b6dfcf60c1e63482612774bede (patch) | |
tree | a24a0577ebda1f89ab80d57c632ab7a95a49ef8c /erts | |
parent | a16ad650d3f9cca03dbc1cf542e9f1ca7dd0a7e3 (diff) | |
download | otp-41d147339c65d2b6dfcf60c1e63482612774bede.tar.gz otp-41d147339c65d2b6dfcf60c1e63482612774bede.tar.bz2 otp-41d147339c65d2b6dfcf60c1e63482612774bede.zip |
Eliminate mentions of 'random' in documentation
Diffstat (limited to 'erts')
-rw-r--r-- | erts/doc/src/init.xml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/erts/doc/src/init.xml b/erts/doc/src/init.xml index fe26df61f7..2a33096d04 100644 --- a/erts/doc/src/init.xml +++ b/erts/doc/src/init.xml @@ -247,10 +247,7 @@ <c>Expr</c> during system initialization. If any of these steps fail (syntax error, parse error or exception during 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> - <p>This example uses Erlang as a hexadecimal calculator:</p> + example that uses Erlang as a hexadecimal calculator:</p> <pre> % <input>erl -noshell -eval 'R = 16#1F+16#A0, io:format("~.16B~n", [R])' \\</input> <input>-s erlang halt</input> |