Skip to content

Commit

Permalink
Docs typos
Browse files Browse the repository at this point in the history
  • Loading branch information
robdockins committed Jan 13, 2021
1 parent 1c38263 commit 301c74c
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
Binary file modified docs/ProgrammingCryptol.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/ProgrammingCryptol/crashCourse/CrashCourse.tex
Original file line number Diff line number Diff line change
Expand Up @@ -3482,7 +3482,7 @@ \section{Newtype declarations}
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}
Expand Down
Binary file modified docs/Semantics.pdf
Binary file not shown.
Binary file modified docs/Syntax.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion src/Cryptol/Eval/Reference.lhs
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit 301c74c

Please sign in to comment.