Fix records in mod_muc.hrl

This commit is contained in:
Evgeniy Khramtsov 2016-01-15 15:46:07 +03:00
parent 33b67f54ba
commit c8bc6cecdc
1 changed files with 3 additions and 3 deletions

View File

@ -24,9 +24,9 @@
opts = [] :: list() | '_'}).
-record(muc_online_room,
{name_host = {<<"">>, <<"">>} :: {binary(), binary()} | {'_', '$1'} | '$1' | '_',
timestamp = p1_time_compat:timestamp() :: erlang:timestamp() | '_',
pid = self() :: pid() | '$1' | '$2' | '_'}).
{name_host = {<<"">>, <<"">>} :: {binary(), binary()} | '$1' |
{'_', binary()} | '_',
pid = self() :: pid() | '$2' | '_' | '$1'}).
-record(muc_registered,
{us_host = {{<<"">>, <<"">>}, <<"">>} :: {{binary(), binary()}, binary()} | '$1',