From bfbca77a8f78282e3bc8a3bea26b36982f19817e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 28 Dec 2018 09:48:41 +0100 Subject: [PATCH] Regex --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ecf16b6..b143c0c 100644 --- a/README.md +++ b/README.md @@ -265,7 +265,7 @@ import re = re.finditer(, text) # Searches for all occurrences of pattern. ``` -* **Parameter 'flags=re.IGNORECASE' can be used with all functions.** +* **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.** * **Use ? to make operators non-greedy.**