Skip to content

Commit 3ec7002

Browse files
committed
Documentation: Fix typos.
1 parent 6f3b712 commit 3ec7002

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/architectural/background-concepts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,7 @@ What changed? Why?
766766

767767
\subsubsection bitvector_subsubsection Using SAT to reason about data: Bit vectors
768768

769-
So far, we have seen how to reason about simple propositional formulae. This
769+
So far, we have seen how to reason about simple propositional formulas. This
770770
seems to be quite far from our goal of reasoning about the behavior of programs.
771771
As a first step, let us see how we can lift SAT-based reasoning to reasoning about
772772
data such as machine integers.
@@ -811,7 +811,7 @@ Using the half-adder formulas, we can define the *full adder*, again given as
811811
two formulas, one for sum and the other for carry. We have
812812
FA_S(A,B,C_in) = HA(HA(A,B),C_in), giving the sum of A, B and C_in,
813813
and FA_C(A,B,C_in) = HA_C(A,B) or (C_in and HA_S(A,B)), which states
814-
whether the result is too big to fit into a bit. Not that the full adder
814+
whether the result is too big to fit into a bit. Note that the full adder
815815
has an additional input for carries; in the following step, we will use it
816816
to chain the full adders together to compute the actual sum.
817817

0 commit comments

Comments
 (0)