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.