From 217f907da97aa8f4c59a5dd60820e0dc72c9c660 Mon Sep 17 00:00:00 2001 From: Matthias Lang Date: Tue, 21 Jun 2011 13:04:05 +0200 Subject: [PATCH] Fix trivial documentation errors --- INSTALL.md | 2 +- lib/stdlib/doc/src/gen_fsm.xml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 1061c5187a51..dd7650f0d1fd 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -27,7 +27,7 @@ on Unix. For detailed instructions on how to Binary releases for Windows can be found at . -Before reading the above mensioned documents you are in any case advised to +Before reading the above mentioned documents you are in any case advised to read this document first, since it covers building Erlang/OTP in general as well as other important information. diff --git a/lib/stdlib/doc/src/gen_fsm.xml b/lib/stdlib/doc/src/gen_fsm.xml index d15383c6216a..ed652f04fbfb 100644 --- a/lib/stdlib/doc/src/gen_fsm.xml +++ b/lib/stdlib/doc/src/gen_fsm.xml @@ -639,9 +639,9 @@ gen_fsm:sync_send_all_state_event -----> Module:handle_sync_event/4 StateName = atom() StateData = term() Result = {next_state,NextStateName,NewStateData} -  > | {next_state,NextStateName,NewStateData,Timeout} -  > | {next_state,NextStateName,NewStateData,hibernate} -  > | {stop,Reason,NewStateData} +   | {next_state,NextStateName,NewStateData,Timeout} +   | {next_state,NextStateName,NewStateData,hibernate} +   | {stop,Reason,NewStateData}  NextStateName = atom()  NewStateData = term()  Timeout = int()>0 | infinity