Fix closes issue13005 - Remove the mention of 'repeat' method in the operator module documentation.
diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst
index 1dc0e14..51cd55f 100644
--- a/Doc/library/operator.rst
+++ b/Doc/library/operator.rst
@@ -378,8 +378,6 @@
+-----------------------+-------------------------+---------------------------------------+
| Right Shift | ``a >> b`` | ``rshift(a, b)`` |
+-----------------------+-------------------------+---------------------------------------+
-| Sequence Repetition | ``seq * i`` | ``repeat(seq, i)`` |
-+-----------------------+-------------------------+---------------------------------------+
| Slice Assignment | ``seq[i:j] = values`` | ``setitem(seq, slice(i, j), values)`` |
+-----------------------+-------------------------+---------------------------------------+
| Slice Deletion | ``del seq[i:j]`` | ``delitem(seq, slice(i, j))`` |