Merge pull request #11202 from SergeTupchiy/fix-rule-type-acl-conf

chore(emqx_authz): fix `rule()` type example
This commit is contained in:
SergeTupchiy 2023-07-05 21:02:36 +03:00 committed by GitHub
commit 1a79e34510
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
%%
%% -type(permission() :: allow | deny).
%%
%% -type(rule() :: {permission(), who(), access(), topics()} | {permission(), all}).
%% -type(rule() :: {permission(), who(), action(), topics()} | {permission(), all}).
%%--------------------------------------------------------------------
{allow, {username, {re, "^dashboard$"}}, subscribe, ["$SYS/#"]}.