aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorRyo Nihei <nihei.dev@gmail.com>2022-05-09 20:41:54 +0900
committerRyo Nihei <nihei.dev@gmail.com>2022-05-10 23:14:52 +0900
commit0ff00d27b2fd524c76fcfac1836b7aad8fe03069 (patch)
treefb52505656b0b9f66ac6efafa8a05f82ad54b015 /README.md
parentAdd ordered symbol notation (diff)
downloadcotia-0ff00d27b2fd524c76fcfac1836b7aad8fe03069.tar.gz
cotia-0ff00d27b2fd524c76fcfac1836b7aad8fe03069.tar.xz
Change the suffix of a description file from -description.json to -report.json
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 047f6c2..66cf005 100644
--- a/README.md
+++ b/README.md
@@ -115,10 +115,10 @@ When `vartan parse` command successfully parses the input data, it prints a CST
#### 3.2. Resolve conflicts
-`vartan compile` command also generates a description file having `-description.json` suffix along with a parsing table. This file describes each state in the parsing table in detail. If your grammar contains conflicts, see `Conflicts` and `States` sections of this file. Using `vartan show` command, you can see the description file in a readable format.
+`vartan compile` command also generates a report named `*-report.json`. This file describes each state in the parsing table in detail. If your grammar contains conflicts, see `Conflicts` and `States` sections of this file. Using `vartan show` command, you can see the report in a readable format.
```sh
-$ vartan show expr-description.json
+$ vartan show expr-report.json
```
### 4. Generate a parser