From 79e260892b9e74c778ddc508af7e0c2cc4ddfee0 Mon Sep 17 00:00:00 2001 From: LTS20050703 <87189679+lts20050703@users.noreply.github.com> Date: Sat, 19 Feb 2022 21:28:31 +0700 Subject: [PATCH] docs(types): Clarify documentation on the `CREATE_PUBLIC_THREADS` permission (#2055) --- types/permissions/bitwisePermissionFlags.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/permissions/bitwisePermissionFlags.ts b/types/permissions/bitwisePermissionFlags.ts index b63d57906..8c2d1d024 100644 --- a/types/permissions/bitwisePermissionFlags.ts +++ b/types/permissions/bitwisePermissionFlags.ts @@ -70,7 +70,7 @@ export enum BitwisePermissionFlags { MANAGE_EVENTS = 0x0000000200000000, /** Allows for deleting and archiving threads, and viewing all private threads */ MANAGE_THREADS = 0x0000000400000000, - /** Allows for creating threads */ + /** Allows for creating public and announcement threads */ CREATE_PUBLIC_THREADS = 0x0000000800000000, /** Allows for creating private threads */ CREATE_PRIVATE_THREADS = 0x0000001000000000,