Docs typos

This commit is contained in:
Rob Dockins 2021-01-12 17:00:24 -08:00
parent 1c382634eb
commit 301c74cb8f
5 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -3482,7 +3482,7 @@ equality are straightforward.
r = x.real * y.real - x.imag * y.imag
i = x.real * y.imag + x.imag * y.real
cplxEq : CplxQ -> CplxQ -> CplxQ
cplxEq : CplxQ -> CplxQ -> Bit
cplxEq x y = (x.real == y.real) && (x.imag == y.imag)
\end{code}

Binary file not shown.

Binary file not shown.

View File

@ -518,7 +518,7 @@ Newtypes
--------
At runtime, newtypes values are represented in exactly
the same was as records. The constructor function for
the same way as records. The constructor function for
newtypes is thus basically just an identity function
that consumes and ignores its type arguments.