From: Matthijs Kooijman Date: Tue, 8 Dec 2009 15:11:02 +0000 (+0100) Subject: Don't use haddock style comments. X-Git-Tag: final-thesis~32 X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fmaster-project%2Freport.git;a=commitdiff_plain;h=8954d248adcd242b5e834f4628a261e082e8add9 Don't use haddock style comments. This will probably only confuse readers. --- diff --git a/Chapters/HardwareDescription.tex b/Chapters/HardwareDescription.tex index db469c5..2a7a077 100644 --- a/Chapters/HardwareDescription.tex +++ b/Chapters/HardwareDescription.tex @@ -71,8 +71,8 @@ application and the corresponding architecture. \startbuffer[And3] --- | A simple function that returns --- conjunction of three bits +-- A simple function that returns +-- conjunction of three bits and3 :: Bit -> Bit -> Bit -> Bit and3 a b c = and (and a b) c \stopbuffer @@ -539,7 +539,7 @@ and3 a b c = and (and a b) c and the corresponding architecture. \startbuffer[Quadruple] --- | Multiply the input word by four. +-- Multiply the input word by four. quadruple :: Word -> Word quadruple n = mul (mul n) where