diff options
author | Anders Svensson <[email protected]> | 2015-09-14 23:26:03 +0200 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2015-09-14 23:26:03 +0200 |
commit | f4534cb9841c4ec9d6c7048555ed1ba5169b966f (patch) | |
tree | b75c2a1592303bb2d7e64ea68e00b2c7b2210d04 /lib/stdlib/doc/src | |
parent | 9fc6588660a6834f8545de32f7677c0d2acd7379 (diff) | |
parent | 44a53a37f39e65c935ed2648ec74dc0f741611e1 (diff) | |
download | otp-f4534cb9841c4ec9d6c7048555ed1ba5169b966f.tar.gz otp-f4534cb9841c4ec9d6c7048555ed1ba5169b966f.tar.bz2 otp-f4534cb9841c4ec9d6c7048555ed1ba5169b966f.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/stdlib/doc/src')
-rw-r--r-- | lib/stdlib/doc/src/gen_fsm.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/stdlib/doc/src/gen_fsm.xml b/lib/stdlib/doc/src/gen_fsm.xml index 5f7b5a3437..a8d7fadeb4 100644 --- a/lib/stdlib/doc/src/gen_fsm.xml +++ b/lib/stdlib/doc/src/gen_fsm.xml @@ -339,11 +339,12 @@ gen_fsm:sync_send_all_state_event -----> Module:handle_sync_event/4 </desc> </func> <func> - <name>reply(Caller, Reply) -> true</name> + <name>reply(Caller, Reply) -> Result</name> <fsummary>Send a reply to a caller.</fsummary> <type> <v>Caller - see below</v> <v>Reply = term()</v> + <v>Result = term()</v> </type> <desc> <p>This function can be used by a gen_fsm to explicitly send a @@ -358,6 +359,8 @@ gen_fsm:sync_send_all_state_event -----> Module:handle_sync_event/4 which will be given back to the client as the return value of <c>sync_send_event/2,3</c> or <c>sync_send_all_state_event/2,3</c>.</p> + <p>The return value <c>Result</c> is not further defined, and + should always be ignored.</p> </desc> </func> <func> |