Skip to content

Commit

Permalink
修正算式採用*的簡寫展開
Browse files Browse the repository at this point in the history
  • Loading branch information
MROS committed Oct 2, 2024
1 parent 7e6ae9e commit 8858b6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions book/零.一版/剖析(語法分析).md
Original file line number Diff line number Diff line change
Expand Up @@ -404,8 +404,8 @@ fn 剖析原子式(&self, 游標: usize) -> Option<(O算式, usize)> {
```
用如下形式表示更加簡單,期中的 (x)* 表示 x 可重複零或多次:
```
算式 = 乘除式・(+・重複乘除式)*
| 乘除式・(−・重複乘除式)*
算式 = 乘除式・(+・乘除式)*
| 乘除式・(−・乘除式)*
```

Expand Down

0 comments on commit 8858b6c

Please sign in to comment.