From 506f0a464ce2d7192068f82e47bb20b8ea12e6e6 Mon Sep 17 00:00:00 2001 From: 0x4kgi <0x4kgi@protonmail.com> Date: Mon, 26 Oct 2020 09:36:57 +0800 Subject: [PATCH] Fix minor typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 55da5ce..3a913cb 100644 --- a/README.md +++ b/README.md @@ -235,7 +235,7 @@ clarified that`t` is the last `t` in the sentence. In regular expressions, the meta character `?` makes the preceding character optional. This symbol matches zero or one instance of the preceding character. For example, the regular expression `[T]?he` means: Optional uppercase -`T`, followed by a lowercase `h`, followed bya lowercase `e`. +`T`, followed by a lowercase `h`, followed by a lowercase `e`.
"[T]he" => The car is parked in the garage.