diff options
author | Niclas Eklund <[email protected]> | 2009-12-21 14:11:22 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2009-12-21 14:11:22 +0000 |
commit | cc62eb20f678cecc1b9b1dbd572b191347a9e907 (patch) | |
tree | 86676a812b969d45208c27e49e58636f34f07285 /lib/ic/doc/src/ch_erl_genserv.xml | |
parent | 4fb050582fa88448f07e9981e4df3cc06237f859 (diff) | |
download | otp-cc62eb20f678cecc1b9b1dbd572b191347a9e907.tar.gz otp-cc62eb20f678cecc1b9b1dbd572b191347a9e907.tar.bz2 otp-cc62eb20f678cecc1b9b1dbd572b191347a9e907.zip |
Removed 011 in documentation files
Diffstat (limited to 'lib/ic/doc/src/ch_erl_genserv.xml')
-rw-r--r-- | lib/ic/doc/src/ch_erl_genserv.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/ic/doc/src/ch_erl_genserv.xml b/lib/ic/doc/src/ch_erl_genserv.xml index 972eff7c17..055b751ba1 100644 --- a/lib/ic/doc/src/ch_erl_genserv.xml +++ b/lib/ic/doc/src/ch_erl_genserv.xml @@ -168,18 +168,18 @@ handle_info(Info, State) -> %% IDL specification produce(State) -> case catch random:uniform() of -\\011{'EXIT',_} -> -\\011 {stop, normal, "random:uniform/0 - EXIT", State}; -\\011RUnif -> + {'EXIT',_} -> + {stop, normal, "random:uniform/0 - EXIT", State}; + RUnif -> {reply, RUnif, State} end. init(State, S1, S2, S3) -> case catch random:seed(S1, S2, S3) of -\\011{'EXIT',_} -> -\\011 {stop, normal, State}; -\\011_ -> + {'EXIT',_} -> + {stop, normal, State}; + _ -> {noreply, State} end. </code> |