diff options
| author | hallgren <hallgren@chalmers.se> | 2016-05-26 13:11:56 +0000 |
|---|---|---|
| committer | hallgren <hallgren@chalmers.se> | 2016-05-26 13:11:56 +0000 |
| commit | 0f51bf35389a71994a8c3b54968f04ed03e5e12b (patch) | |
| tree | cc489cae99947a7d1767d0e04fd498cda52c202c /src/runtime/haskell | |
| parent | a775c96174ba055ba953a2091066d66bf632c026 (diff) | |
Fix documentation typo on PGF.Haskell
Diffstat (limited to 'src/runtime/haskell')
| -rw-r--r-- | src/runtime/haskell/PGF/Haskell.hs | 2 |
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) |
