Docs: Change `remove` to `removes` for consistency (GH-121072)
(cherry picked from commit
967a4f1d180d4cd669d5c6e3ac5ba99af4e72d4e)
Co-authored-by: smij720 <122238526+smij720@users.noreply.github.com>
| ``s.pop()`` or ``s.pop(i)`` | retrieves the item at *i* and | \(2) |
| | also removes it from *s* | |
+------------------------------+--------------------------------+---------------------+
-| ``s.remove(x)`` | remove the first item from *s* | \(3) |
-| | where ``s[i]`` is equal to *x* | |
+| ``s.remove(x)`` | removes the first item from | \(3) |
+| | *s* where ``s[i]`` is equal to | |
+| | *x* | |
+------------------------------+--------------------------------+---------------------+
| ``s.reverse()`` | reverses the items of *s* in | \(4) |
| | place | |