fix(gw): fix static checking

This commit is contained in:
JianBo He 2021-11-30 16:37:27 +08:00
parent 7f04837ad2
commit dab3e14686
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@
-type atom_or_bin() :: atom() | binary(). -type atom_or_bin() :: atom() | binary().
-type ok_or_err() :: ok | {error, term()}. -type ok_or_err() :: ok | {error, term()}.
-type map_or_err() :: map() | {error, term()}. -type map_or_err() :: {ok, map()} | {error, term()}.
-type listener_ref() :: {ListenerType :: atom_or_bin(), -type listener_ref() :: {ListenerType :: atom_or_bin(),
ListenerName :: atom_or_bin()}. ListenerName :: atom_or_bin()}.