diff --git a/README.md b/README.md index 50de5d0..794a092 100644 --- a/README.md +++ b/README.md @@ -169,8 +169,8 @@ re.split(, text, maxsplit=0) # Use brackets in regex to keep the matches ``` **'Search' and 'match' functions return a 'Match' object. Use '.group()' method on it to get the match.** -**Parameter 'flags=re.IGNORECASE' can be used with all functions.** -**Parameter 'flags=re.DOTALL' makes dot also accept newline.** +**Parameter 'flags=re.IGNORECASE' can be used with all functions.** +**Parameter 'flags=re.DOTALL' makes dot also accept newline.** **Use '\\1' or r'\1' for backreference.** #### Special Sequences: