From 562bb0e9d44abf1acdc5231046091a01776ffe80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 19 Mar 2019 22:39:13 +0100 Subject: [PATCH] A/an/the --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c704241..eb858e7 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ Set ``` ### Frozenset -#### Is hashable, meaning it can be used as a key in dictionary or as an element in set. +#### Is hashable, meaning it can be used as a key in a dictionary or as an element in a set. ```python = frozenset() ``` @@ -291,7 +291,7 @@ import re * **Parameter `'flags=re.IGNORECASE'` can be used with all functions.** * **Parameter `'flags=re.DOTALL'` makes dot also accept newline.** * **Use `r'\1'` or `'\\1'` for backreference.** -* **Use `'?'` to make operator non-greedy.** +* **Use `'?'` to make an operator non-greedy.** ### Match Object ```python