From 6216f32122b4579f5b7f3bfa44e4b8b8fb525d01 Mon Sep 17 00:00:00 2001 From: Seonghyeon Cho Date: Mon, 17 Jul 2023 21:01:58 +0900 Subject: [PATCH] Fix typo (`@readonly` -> `@read`) (#2486) --- docs/management/security/acl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/management/security/acl.md b/docs/management/security/acl.md index 508e781887..6b1baeed1f 100644 --- a/docs/management/security/acl.md +++ b/docs/management/security/acl.md @@ -440,7 +440,7 @@ Permissions are defined as individual characters that map to the following key p Permissions can be composed together by specifying multiple characters. Specifying the permission as 'RW' is considered full access and is analogous to just passing in `~`. -For a concrete example, consider a user with ACL rules `+@all ~app1:* (+@readonly ~app2:*)`. +For a concrete example, consider a user with ACL rules `+@all ~app1:* (+@read ~app2:*)`. This user has full access on `app1:*` and readonly access on `app2:*`. However, some commands support reading data from one key, doing some transformation, and storing it into another key. One such command is the `COPY` command, which copies the data from the source key into the destination key.