diff --git a/README.md b/README.md index 2412c13..c5c4f04 100644 --- a/README.md +++ b/README.md @@ -237,7 +237,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.