From 515d17405a9eda9f457746193b9b8722ab17b2e6 Mon Sep 17 00:00:00 2001 From: chromacoat dreamkey <49148994+quackbarc@users.noreply.github.com> Date: Mon, 21 Mar 2022 00:59:23 +0800 Subject: [PATCH] Fix typos in some View methods' docstrings --- discord/ui/view.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/discord/ui/view.py b/discord/ui/view.py index 92d1300b4..4c3e9d886 100644 --- a/discord/ui/view.py +++ b/discord/ui/view.py @@ -254,8 +254,10 @@ class View: def add_item(self, item: Item[Any]) -> Self: """Adds an item to the view. + This function returns the class instance to allow for fluent-style chaining. + Parameters ----------- item: :class:`Item` @@ -284,6 +286,7 @@ class View: def remove_item(self, item: Item[Any]) -> Self: """Removes an item from the view. + This function returns the class instance to allow for fluent-style chaining. @@ -303,6 +306,7 @@ class View: def clear_items(self) -> Self: """Removes all items from the view. + This function returns the class instance to allow for fluent-style chaining. """