diff options
Diffstat (limited to 'lib/stdlib/doc')
-rw-r--r-- | lib/stdlib/doc/src/gen_statem.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/stdlib/doc/src/gen_statem.xml b/lib/stdlib/doc/src/gen_statem.xml index 4fe940bd05..be90488a1f 100644 --- a/lib/stdlib/doc/src/gen_statem.xml +++ b/lib/stdlib/doc/src/gen_statem.xml @@ -411,21 +411,21 @@ handle_event(_, _, State, Data) -> The <c>gen_statem</c> is locally registered. </p> </item> - <tag><c>Name, Node</c></tag> + <tag><c>{Name,Node}</c></tag> <item> <p> The <c>gen_statem</c> is locally registered on another node. </p> </item> - <tag><c>GlobalName</c></tag> + <tag><c>{global,GlobalName}</c></tag> <item> <p> The <c>gen_statem</c> is globally registered in <seealso marker="kernel:global"><c>kernel:global</c></seealso>. </p> </item> - <tag><c>RegMod, ViaName</c></tag> + <tag><c>{via,RegMod,ViaName}</c></tag> <item> <p> The <c>gen_statem</c> is registered through @@ -906,7 +906,7 @@ handle_event(_, _, State, Data) -> <tag><c>stop</c></tag> <item> <p> - Terminates the <c>gen_statem</c> by calling + Terminates the <c>gen_statem</c> by calling <seealso marker="#Module:terminate/3"> <c>Module:terminate/3</c> </seealso> |