From 027607de94ddd472221826c43aa41d6c952e3847 Mon Sep 17 00:00:00 2001 From: Diego d'Ursel Date: Tue, 8 May 2018 16:00:30 +0200 Subject: [PATCH] remove duplicated line --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ab103be..c8152d2 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ Users of *regular expressions* will find parsing expressions familiar. They shar Terminal Symbols ---------------- The expression in the grammar above is a terminal symbol. It will only match a string that matches it exactly. There are two other kinds of terminal symbols, which we'll revisit later. Terminals are called *atomic expressions* because they aren't composed of smaller expressions. -Terminals are called atomic expressions because they aren't composed of smaller expressions. A terminal symbol may use either double or single quotes. If the closing quote is immediately followed by the modifier 'i', the string is matched without case-sensitivity, that is, the input.downcase matches the terminal.downcase +A terminal symbol may use either double or single quotes. If the closing quote is immediately followed by the modifier 'i', the string is matched without case-sensitivity, that is, the input.downcase matches the terminal.downcase Ordered Choices ---------------