diff --git a/README.md b/README.md index d6e4a4b..5f26148 100644 --- a/README.md +++ b/README.md @@ -250,7 +250,7 @@ import re = re.findall(, text) = re.split(, text, maxsplit=0) # Use brackets in regex to keep the matches. = re.search(, text) # Searches for first occurrence of pattern. - = re.match(, text) # Searches only at the beginning of the string. + = re.match(, text) # Searches only at the beginning of the text. = re.finditer(, text) # Searches for all occurrences of pattern. ```