diff --git a/README.md b/README.md index c57b8ce..6e7d5f2 100644 --- a/README.md +++ b/README.md @@ -355,7 +355,7 @@ import re = re.finditer(, text) # Returns all occurrences as match objects. ``` -* **Search() and match() return None if there are no matches.** +* **Search() and match() return None if they can't find a match.** * **Argument `'flags=re.IGNORECASE'` can be used with all functions.** * **Argument `'flags=re.MULTILINE'` makes `'^'` and `'$'` match the start/end of each line.** * **Argument `'flags=re.DOTALL'` makes dot also accept newline.** diff --git a/index.html b/index.html index 5053c14..30ed206 100644 --- a/index.html +++ b/index.html @@ -460,7 +460,7 @@ to_exclusive = <range>.stop