Skip to content

Commit 0fd1c50

Browse files
committed
Find + returns -> Find + return
1 parent a208d39 commit 0fd1c50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/howto/regex.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,10 +369,10 @@ for a complete listing.
369369
| | location where this RE matches. |
370370
+------------------+-----------------------------------------------+
371371
| ``findall()`` | Find all substrings where the RE matches, and |
372-
| | returns them as a list. |
372+
| | return them as a list. |
373373
+------------------+-----------------------------------------------+
374374
| ``finditer()`` | Find all substrings where the RE matches, and |
375-
| | returns them as an :term:`iterator`. |
375+
| | return them as an :term:`iterator`. |
376376
+------------------+-----------------------------------------------+
377377

378378
:meth:`~re.Pattern.match` and :meth:`~re.Pattern.search` return ``None`` if no match can be found. If

0 commit comments

Comments
 (0)