Typo in function definition

This commit is contained in:
Adam Chlipala 2021-07-02 12:58:22 -04:00
parent 3582bd1222
commit 1b43aa9aea

View file

@ -5053,7 +5053,7 @@ One simply follows all the edges in the graph determined by a transition system,
For our object language in this chapter, a good safety property is that commands are \emph{not about to fail}, formalized as:
\begin{eqnarray*}
\natf{\mt{Fail}} &=& \bot \\
\natf{x \leftarrow c_1; c_x(x)} &=& \natf{c_1} \\
\natf{x \leftarrow c_1; c_2(x)} &=& \natf{c_1} \\
\natf{c_1 || c_2} &=& \natf{c_1} \land \natf{c_2} \\
\natf{\_} &=& \top
\end{eqnarray*}