aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorRyo Nihei <nihei.dev@gmail.com>2022-05-09 20:49:16 +0900
committerRyo Nihei <nihei.dev@gmail.com>2022-05-10 23:14:52 +0900
commit0b858d664433d0b11e1d46dbd774e19da5b5a750 (patch)
tree3fe7dff648e8fc699dccbfec181e287220603409 /README.md
parentChange the suffix of a description file from -description.json to -report.json (diff)
downloadurubu-0b858d664433d0b11e1d46dbd774e19da5b5a750.tar.gz
urubu-0b858d664433d0b11e1d46dbd774e19da5b5a750.tar.xz
Change the default suffix of a grammar file from .vr to .vartan
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 66cf005..e3d9147 100644
--- a/README.md
+++ b/README.md
@@ -67,7 +67,7 @@ div
: '/';
```
-Save the above grammar to a file in UTF-8. In this explanation, the file name is `expr.vr`.
+Save the above grammar to a file in UTF-8. In this explanation, the file name is `expr.vartan`.
⚠️ The input file must be encoded in UTF-8.
@@ -76,7 +76,7 @@ Save the above grammar to a file in UTF-8. In this explanation, the file name is
Next, generate a parsing table using `vartan compile` command.
```sh
-$ vartan compile expr.vr -o expr.json
+$ vartan compile expr.vartan -o expr.json
```
### 3. Debug