Skip to content

Commit 50fdeb5

Browse files
authored
[spec] Fix typos in numeric operations (#1467)
1 parent 1ffb924 commit 50fdeb5

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

document/core/exec/instructions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Where the underlying operators are non-deterministic, because they may return on
108108
(t\K{.}\CONST~c_1)~(t\K{.}\CONST~c_2)~t\K{.}\binop &\stepto& (t\K{.}\CONST~c)
109109
& (\iff c \in \binop_t(c_1,c_2)) \\
110110
(t\K{.}\CONST~c_1)~(t\K{.}\CONST~c_2)~t\K{.}\binop &\stepto& \TRAP
111-
& (\iff \binop_{t}(c_1,c2) = \{\})
111+
& (\iff \binop_{t}(c_1,c_2) = \{\})
112112
\end{array}
113113
114114

document/core/exec/numerics.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ The integer result of predicates -- i.e., :ref:`tests <syntax-testop>` and :ref:
406406

407407
.. math::
408408
\begin{array}{@{}lcll}
409-
\iandnot_N(i_1, i_2) &=& \iand_N(i_1, \inot_N(i2))
409+
\iandnot_N(i_1, i_2) &=& \iand_N(i_1, \inot_N(i_2))
410410
\end{array}
411411
412412
.. _op-ior:
@@ -793,8 +793,8 @@ The integer result of predicates -- i.e., :ref:`tests <syntax-testop>` and :ref:
793793

794794
.. math::
795795
\begin{array}{@{}lcll}
796-
\iminu_N(i_1, i_2) &=& i_1 & (\iff \ilts_N(i_1, i_2) = 1)\\
797-
\iminu_N(i_1, i_2) &=& i_2 & (\otherwise)
796+
\imins_N(i_1, i_2) &=& i_1 & (\iff \ilts_N(i_1, i_2) = 1)\\
797+
\imins_N(i_1, i_2) &=& i_2 & (\otherwise)
798798
\end{array}
799799
800800
@@ -807,8 +807,8 @@ The integer result of predicates -- i.e., :ref:`tests <syntax-testop>` and :ref:
807807

808808
.. math::
809809
\begin{array}{@{}lcll}
810-
\iminu_N(i_1, i_2) &=& i_1 & (\iff \igtu_N(i_1, i_2) = 1)\\
811-
\iminu_N(i_1, i_2) &=& i_2 & (\otherwise)
810+
\imaxu_N(i_1, i_2) &=& i_1 & (\iff \igtu_N(i_1, i_2) = 1)\\
811+
\imaxu_N(i_1, i_2) &=& i_2 & (\otherwise)
812812
\end{array}
813813
814814
@@ -821,8 +821,8 @@ The integer result of predicates -- i.e., :ref:`tests <syntax-testop>` and :ref:
821821

822822
.. math::
823823
\begin{array}{@{}lcll}
824-
\iminu_N(i_1, i_2) &=& i_1 & (\iff \igts_N(i_1, i_2) = 1)\\
825-
\iminu_N(i_1, i_2) &=& i_2 & (\otherwise)
824+
\imaxs_N(i_1, i_2) &=& i_1 & (\iff \igts_N(i_1, i_2) = 1)\\
825+
\imaxs_N(i_1, i_2) &=& i_2 & (\otherwise)
826826
\end{array}
827827
828828

0 commit comments

Comments
 (0)