summaryrefslogtreecommitdiff
path: root/src/runtime/haskell
diff options
context:
space:
mode:
authorhallgren <hallgren@chalmers.se>2016-05-26 13:11:56 +0000
committerhallgren <hallgren@chalmers.se>2016-05-26 13:11:56 +0000
commit0f51bf35389a71994a8c3b54968f04ed03e5e12b (patch)
treecc489cae99947a7d1767d0e04fd498cda52c202c /src/runtime/haskell
parenta775c96174ba055ba953a2091066d66bf632c026 (diff)
Fix documentation typo on PGF.Haskell
Diffstat (limited to 'src/runtime/haskell')
-rw-r--r--src/runtime/haskell/PGF/Haskell.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/haskell/PGF/Haskell.hs b/src/runtime/haskell/PGF/Haskell.hs
index 38c082be4..87cecc5d4 100644
--- a/src/runtime/haskell/PGF/Haskell.hs
+++ b/src/runtime/haskell/PGF/Haskell.hs
@@ -61,7 +61,7 @@ data R_s t = R_s t deriving (Eq,Ord,Show)
instance (EnumAll t) => EnumAll (R_s t) where enumAll = R_s <$> enumAll
instance Has_s (R_s t) t where proj_s (R_s t) = t
--- | Coerce from any record type @{...,s:t,...}@ field to the supertype @{s:t}@
+-- | Coerce from any record type @{...,s:t,...}@ to the supertype @{s:t}@
to_R_s r = R_s (proj_s r)