From c57dc8f61c5ebee199625fffcc524bf2568e0585 Mon Sep 17 00:00:00 2001 From: "Prof. Ronald Moore" <ronald.moore@h-da.de> Date: Sun, 3 May 2020 00:33:23 +0200 Subject: [PATCH] fixed format mistake in READMEs --- recursiveDescentParsers/cplusplus/halfBakedCompiler/README.md | 3 ++- recursiveDescentParsers/cplusplus/interpret++/README.md | 3 ++- recursiveDescentParsers/cplusplus/interpreter/README.md | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/recursiveDescentParsers/cplusplus/halfBakedCompiler/README.md b/recursiveDescentParsers/cplusplus/halfBakedCompiler/README.md index 53b75d1..776b49c 100644 --- a/recursiveDescentParsers/cplusplus/halfBakedCompiler/README.md +++ b/recursiveDescentParsers/cplusplus/halfBakedCompiler/README.md @@ -10,7 +10,8 @@ similar, please let me know, so I can give credit where credit is due -- or disavow knowledge of that source (as the case may be). You are in the following subdirectory - ** `halfBakedCompiler` + + * `halfBakedCompiler` This code take mathematical expressions and builds an abstract syntax tree, a.k.a. an AST. It then dumps this AST as text. The parsing is equivalent to that in `interpreter` and `interpret++` diff --git a/recursiveDescentParsers/cplusplus/interpret++/README.md b/recursiveDescentParsers/cplusplus/interpret++/README.md index 1f1c217..7f987f3 100644 --- a/recursiveDescentParsers/cplusplus/interpret++/README.md +++ b/recursiveDescentParsers/cplusplus/interpret++/README.md @@ -10,7 +10,8 @@ similar, please let me know, so I can give credit where credit is due -- or disavow knowledge of that source (as the case may be). You are in the following subdirectory - ** `interpret++` + + * `interpret++` This code take mathematical expressions and evaluates them, i.e. it outputs numbers. It is the same as its sister folder `interpreter` as far as recursive descent parsing goes, but uses more C++ features and diff --git a/recursiveDescentParsers/cplusplus/interpreter/README.md b/recursiveDescentParsers/cplusplus/interpreter/README.md index 93a3776..f06c41a 100644 --- a/recursiveDescentParsers/cplusplus/interpreter/README.md +++ b/recursiveDescentParsers/cplusplus/interpreter/README.md @@ -10,7 +10,8 @@ similar, please let me know, so I can give credit where credit is due -- or disavow knowledge of that source (as the case may be). You are in the following subdirectory - ** `interpreter` + + * `interpreter` This code take mathematical expressions and evaluates them, i.e. it outputs numbers. -- GitLab