Skip to content

Commit

Permalink
Don't use '=' when defining parsing production rule
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikt-ma committed Oct 25, 2021
1 parent 4a73045 commit 4976c43
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion chapters/unitexpressions.tex
Expand Up @@ -53,7 +53,8 @@ \section{The Syntax of Unit Expressions}\label{the-syntax-of-unit-expressions}
unit-operand :
UNIT-SYMBOL | unit-prefix UNIT-SYMBOL

unit-prefix = "Y" | "Z" | "E" | "P" | "T" | "G" | "M" | "k" | "h" | "da"
unit-prefix :
"Y" | "Z" | "E" | "P" | "T" | "G" | "M" | "k" | "h" | "da"
| "d" | "c" | "m" | "u" | "n" | "p" | "f" | "a" | "z" | "y"
\end{lstlisting}

Expand Down

0 comments on commit 4976c43

Please sign in to comment.