From e7953545e02ef3a2ae668c9d12ae1ee717666ed5 Mon Sep 17 00:00:00 2001 From: dolfies Date: Sun, 21 May 2023 21:37:43 -0400 Subject: [PATCH] Fix ApplicationDiscoveryFlags docs --- discord/flags.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/discord/flags.py b/discord/flags.py index b14daad03..b3f668ecf 100644 --- a/discord/flags.py +++ b/discord/flags.py @@ -1821,25 +1821,25 @@ class ApplicationDiscoveryFlags(BaseFlags): .. describe:: x == y - Checks if two LibraryApplicationFlags are equal. + Checks if two ApplicationDiscoveryFlags are equal. .. describe:: x != y - Checks if two LibraryApplicationFlags are not equal. + Checks if two ApplicationDiscoveryFlags are not equal. .. describe:: x | y, x |= y - Returns a LibraryApplicationFlags instance with all enabled flags from + Returns a ApplicationDiscoveryFlags instance with all enabled flags from both x and y. .. describe:: x & y, x &= y - Returns a LibraryApplicationFlags instance with only flags enabled on + Returns a ApplicationDiscoveryFlags instance with only flags enabled on both x and y. .. describe:: x ^ y, x ^= y - Returns a LibraryApplicationFlags instance with only flags enabled on + Returns a ApplicationDiscoveryFlags instance with only flags enabled on only one of x or y, not on both. .. describe:: ~x - Returns a LibraryApplicationFlags instance with all flags inverted from x. + Returns a ApplicationDiscoveryFlags instance with all flags inverted from x. .. describe:: hash(x) Return the flag's hash.