From edd9607b3bea79be718b774b8c58e623b918eee2 Mon Sep 17 00:00:00 2001
From: Raimo Niskanen
Date: Fri, 15 Jul 2016 16:18:06 +0200
Subject: Fix type and template errors from bugs.erlang.org: ERL-172 and
ERL-187
---
lib/stdlib/doc/src/gen_statem.xml | 18 +++++++++++++-----
1 file changed, 13 insertions(+), 5 deletions(-)
(limited to 'lib/stdlib/doc/src')
diff --git a/lib/stdlib/doc/src/gen_statem.xml b/lib/stdlib/doc/src/gen_statem.xml
index c57a31fa21..ed44eef912 100644
--- a/lib/stdlib/doc/src/gen_statem.xml
+++ b/lib/stdlib/doc/src/gen_statem.xml
@@ -1262,9 +1262,9 @@ handle_event(_, _, State, Data) ->
Vsn = term()
OldState = NewState = term()
Extra = term()
- Result = {NewCallbackMode,NewState,NewData} | Reason
+ Result = {CallbackMode,NewState,NewData} | Reason
- NewCallbackMode =
+ CallbackMode =
callback_mode()
@@ -1321,11 +1321,19 @@ handle_event(_, _, State, Data) ->
If successful, the function must return the updated
internal state in an
- {NewCallbackMode,NewState,NewData} tuple.
+ {CallbackMode,NewState,NewData} tuple.
- If the function returns Reason, the ongoing
- upgrade fails and rolls back to the old release.
+ If the function returns a failure Reason, the ongoing
+ upgrade fails and rolls back to the old release.
+ Note that Reason can not be a 3-tuple since that
+ will be regarded as a
+ {CallbackMode,NewState,NewData} tuple,
+ and that a tuple matching {ok,_}
+ is an invalid failure Reason.
+ It is recommended to use an atom as Reason since
+ it will be wrapped in an {error,Reason} tuple.
+
This function can use
erlang:throw/1
--
cgit v1.2.3