From 0ab4476fc94002d70dc5cf842b5e01a901439c88 Mon Sep 17 00:00:00 2001 From: paulzfm Date: Mon, 7 Aug 2017 17:16:12 +0800 Subject: [PATCH] update README --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 6462938..0032b54 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ # LL1-Parser-Gen -A LL(1) Parser Generator. This tool automatically generate a parser class written in Java that +LL(1) Parser Generator that automatically generate a parser class written in Java which satisfies the context-free grammar (CFG) written as a specification file. The parse engine is based on LL(1) parsing technique, from top to bottom. -This tool will become a part of the decaf project for the undergraduate course Principles of +LL1-Parser-Gen will become a part of the decaf project for the undergraduate course Principles of Compilation, Tsinghua University. ### Build @@ -40,8 +40,8 @@ type java -jar pg.jar [-strict] ``` -to generate the target parser `` from your ``. Open the option `-strict` if -you want to generate in [strict mode](https://github.com/paulzfm/LL1-Parser-Gen/wiki/2.-Strict-Mode). +to generate the target parser `` from your ``. Open the option `-strict` to +run in [strict mode](https://github.com/paulzfm/LL1-Parser-Gen/wiki/2.-Strict-Mode). We strongly recommend you to read our [wiki](https://github.com/paulzfm/LL1-Parser-Gen/wiki) before using the tool. @@ -53,5 +53,5 @@ demo projects [arith](https://github.com/paulzfm/LL1-Parser-Gen/tree/master/demo implements a simple calculator, and [decaf](https://github.com/paulzfm/LL1-Parser-Gen/tree/master/demos/decaf), a Java-like language parser. -To build these projects, under the project root directory, type `ant` to build (make sure you have -installed the `ant` tool). And the target jar file will be located at `result/` folder. \ No newline at end of file +To build these projects, under the demo project root directory, type `ant` to build (make sure you have +installed the `ant` tool). The target jar file will be generated at `result/` folder.