diff --git a/README.md b/README.md index 43b80d3..c4e8f02 100644 --- a/README.md +++ b/README.md @@ -173,8 +173,8 @@ 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 any number of character, followed by the lowercase character `t`. +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`.
 "c.+t" => The fat cat sat on the mat.