diff --git a/README.md b/README.md index 1df58ac..3688d85 100644 --- a/README.md +++ b/README.md @@ -174,7 +174,7 @@ zero or more spaces. ### 2.3.2 The Plus The symbol `+` matches one or more repetitions of the preceding character. For example, the regular expression `c.+t` means: lowercase -letter `c`, followed by at least one character, followed by the lowercase character `t`. +letter `c`, followed by at least one character, followed by the lowercase character `t`. It needs to be clarified that `t` is the last `t` in the sentence.
"c.+t" => The fat cat sat on the mat.