From f3fa7029ea711a67a489aca5c43fda73966f09c5 Mon Sep 17 00:00:00 2001 From: ksherlock Date: Sat, 30 Sep 2017 10:26:50 -0400 Subject: [PATCH] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4089851..8bf29c2 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,8 @@ pointers as much (unless, of course, you want to!) ###lemon-- - %token_type {std::any} // c++17 + + %token_type {std::any} // c++17 %type number_list{std::vector} %type string_list{std::vector} // or use a std::shared_ptr or std::unique_ptr... @@ -51,7 +52,7 @@ pointers as much (unless, of course, you want to!) ###lemon - %token_type {std::any *)} + %token_type {std::any *)} %token_destructor { delete $$ } %type number_list{std::vector *}