Fix some broken Haddock.

This commit is contained in:
Adam Sampson 2008-05-25 18:49:15 +00:00
parent 5d8d96fb7a
commit b413cf3dc2
2 changed files with 3 additions and 3 deletions

View File

@ -57,8 +57,8 @@ parseAsmLine s
-- The x86 stack goes downwards, so subl makes the stack deeper.
["subl", '$':arg, "%esp"] -> parseInc arg
-- ... but GCC will sometimes generate "addl $-n" rather than "subl
-- $n".
-- ... but GCC will sometimes generate "addl \$-n" rather than "subl
-- \$n".
["addl", '$':'-':arg, "%esp"] -> parseInc arg
-- A plain push also makes the stack deeper.
("pushl":_) -> Just $ AsmStackInc 4

View File

@ -366,7 +366,7 @@ data Choice = Choice Meta Expression Process
-- | A guard in an @ALT@.
data Alternative =
-- | A plain/conditional guard.
-- | A plain or conditional guard.
-- The channel or timer is the 'Variable', and the destination (or @AFTER@
-- clause) is inside the 'InputMode'. The process is the body of the guard.
-- The 'Expression' is the pre-condition.