From 4adfde1a7b288380e1ca9847629586d1016a0721 Mon Sep 17 00:00:00 2001 From: Abe Hanoka Date: Wed, 14 Dec 2022 19:09:45 -0500 Subject: [PATCH] Fix missing word in persistent view example --- examples/views/persistent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/views/persistent.py b/examples/views/persistent.py index 1c410abd2..5eddfab0b 100644 --- a/examples/views/persistent.py +++ b/examples/views/persistent.py @@ -5,7 +5,7 @@ import discord # Define a simple View that persists between bot restarts -# In order a view to persist between restarts it needs to meet the following conditions: +# In order for a view to persist between restarts it needs to meet the following conditions: # 1) The timeout of the View has to be set to None # 2) Every item in the View has to have a custom_id set # It is recommended that the custom_id be sufficiently unique to