From bbd17b68fb740f650f366b7edbb83aec910d6a25 Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Tue, 14 Aug 2018 13:40:22 +0200 Subject: [PATCH] examples: fix Englishoes * examples/README: Fix my mistakes. --- examples/README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/README b/examples/README index 1a0c65d1..bfdd8c68 100644 --- a/examples/README +++ b/examples/README @@ -6,10 +6,10 @@ documentation. * calc++ A C++ version of the canonical example for parsers: a calculator. -Also uses Flex for the scanner. +Also uses Flex for the scanner. Extracted from the documentation. * variant.yy -A C++ examples that uses variants (they allow to use any C++ type as +A C++ example that uses variants (they allow to use any C++ type as semantic value type) and symbol constructors (they ensure consistency between declared token type and effective semantic value).