bpo-41933: Clarify wording for s * n in Common Sequence Operations (GH-22570)
diff --git a/Lib/pydoc_data/topics.py b/Lib/pydoc_data/topics.py
index 0048f79..a86d422 100644
--- a/Lib/pydoc_data/topics.py
+++ b/Lib/pydoc_data/topics.py
@@ -13956,9 +13956,9 @@
'| "s + t" | the concatenation of *s* and *t* '
'| (6)(7) |\n'
'+----------------------------+----------------------------------+------------+\n'
- '| "s * n" or "n * s" | equivalent to adding *s* to '
+ '| "s * n" or "n * s" | equivalent to *n* copies of the '
'| (2)(7) |\n'
- '| | itself *n* times '
+ '| | *s* sequence '
'| |\n'
'+----------------------------+----------------------------------+------------+\n'
'| "s[i]" | *i*th item of *s*, origin 0 '