From f160d21c0c4ef42b2631708f3a8d5d53faffa4c6 Mon Sep 17 00:00:00 2001 From: Pichet Itngam Date: Fri, 20 Oct 2017 11:23:29 +0700 Subject: [PATCH] Add missing "|" (#99) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e1a6f3..443973e 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ square brackets. The meta characters are as follows: |[ ]|Character class. Matches any character contained between the square brackets.| |[^ ]|Negated character class. Matches any character that is not contained between the square brackets| |*|Matches 0 or more repetitions of the preceding symbol.| -|+|Matches 1 or more repetitions of the preceding symbol. +|+|Matches 1 or more repetitions of the preceding symbol.| |?|Makes the preceding symbol optional.| |{n,m}|Braces. Matches at least "n" but not more than "m" repetitions of the preceding symbol.| |(xyz)|Character group. Matches the characters xyz in that exact order.|