diff options
author | Raimo Niskanen <[email protected]> | 2016-05-04 14:36:35 +0200 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2016-05-04 14:36:35 +0200 |
commit | 1f145f8a444121fac1f15dfe4af54f2148419ac1 (patch) | |
tree | d75a9795cd2df4adede671775389ae17574fd2c9 /lib/stdlib/src/gen_statem.erl | |
parent | 2cb8dae90b0d2725b27147684a602cf2fa61f12e (diff) | |
download | otp-1f145f8a444121fac1f15dfe4af54f2148419ac1.tar.gz otp-1f145f8a444121fac1f15dfe4af54f2148419ac1.tar.bz2 otp-1f145f8a444121fac1f15dfe4af54f2148419ac1.zip |
Fix documentation
Diffstat (limited to 'lib/stdlib/src/gen_statem.erl')
-rw-r--r-- | lib/stdlib/src/gen_statem.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/stdlib/src/gen_statem.erl b/lib/stdlib/src/gen_statem.erl index 23a1c9b31d..23bddafeed 100644 --- a/lib/stdlib/src/gen_statem.erl +++ b/lib/stdlib/src/gen_statem.erl @@ -290,11 +290,11 @@ event_type(Type) -> | {'via', RegMod :: module(), Name :: term()} | {'local', atom()}. -type server_ref() :: - {'global', GlobalName :: term()} - | {'via', RegMod :: module(), ViaName :: term()} + pid() | (LocalName :: atom()) | {Name :: atom(), Node :: atom()} - | pid(). + | {'global', GlobalName :: term()} + | {'via', RegMod :: module(), ViaName :: term()}. -type debug_opt() :: {'debug', Dbgs :: |