瀏覽代碼

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

chore(emqx_authz): fix `rule()` type example
SergeTupchiy 2 年之前
父節點
當前提交
1a79e34510
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      apps/emqx_authz/etc/acl.conf

+ 1 - 1
apps/emqx_authz/etc/acl.conf

@@ -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/#"]}.