Skip to content

Commit

Permalink
Fix haddock markup for Expr constructors (#1712)
Browse files Browse the repository at this point in the history
  • Loading branch information
JaSpa authored Mar 26, 2020
1 parent e0c0faf commit 0c4b59a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dhall/src/Dhall/Syntax.hs
Original file line number Diff line number Diff line change
Expand Up @@ -370,9 +370,9 @@ data Expr s a
| Integer
-- | > IntegerLit n ~ ±n
| IntegerLit Integer
-- | IntegerClamp ~ Integer/clamp
-- | > IntegerClamp ~ Integer/clamp
| IntegerClamp
-- | IntegerNegate ~ Integer/negate
-- | > IntegerNegate ~ Integer/negate
| IntegerNegate
-- | > IntegerShow ~ Integer/show
| IntegerShow
Expand Down Expand Up @@ -466,7 +466,7 @@ data Expr s a
-- | > Field e x ~ e.x
| Field (Expr s a) Text
-- | > Project e (Left xs) ~ e.{ xs }
-- | > Project e (Right t) ~ e.(t)
-- > Project e (Right t) ~ e.(t)
| Project (Expr s a) (Either (Set Text) (Expr s a))
-- | > Assert e ~ assert : e
| Assert (Expr s a)
Expand Down

0 comments on commit 0c4b59a

Please sign in to comment.