Fix #13834: strip() strips leading and trailing whitespace.
diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c
index 8249e5f..a0d4cbd 100644
--- a/Objects/bytesobject.c
+++ b/Objects/bytesobject.c
@@ -1437,7 +1437,7 @@
"B.strip([bytes]) -> bytes\n\
\n\
Strip leading and trailing bytes contained in the argument.\n\
-If the argument is omitted, strip trailing ASCII whitespace.");
+If the argument is omitted, strip leading and trailing ASCII whitespace.");
static PyObject *
bytes_strip(PyBytesObject *self, PyObject *args)
{