Fix minor typo

This commit is contained in:
0x4kgi 2020-10-26 09:36:57 +08:00 committed by GitHub
parent 5dacd8a409
commit 506f0a464c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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`.
<pre>
"[T]he" => <a href="#learn-regex"><strong>The</strong></a> car is parked in the garage.