diff --git a/README.md b/README.md index 525dcc0..693d4e0 100644 --- a/README.md +++ b/README.md @@ -168,7 +168,7 @@ re.findall(, text) re.split(, text, maxsplit=0) # Use brackets in regex to keep the matches. ``` -* **Search and match return a 'Match' object. Use '.group()' method on it to get the match.** +* **_Search_ and _match_ return a 'Match' object. Use '.group()' method on it to get the match.** * **Parameter 'flags=re.IGNORECASE' can be used with all functions.** * **Use r'\1' for backreference.**