Skip to content
Snippets Groups Projects
Commit b81350bb authored by Icelandjack's avatar Icelandjack Committed by Marge Bot
Browse files

Replaced MkT1 with T1 in type signatures.

parent a9ae83af
No related branches found
No related tags found
No related merge requests found
Pipeline #25651 passed with warnings
......@@ -72,10 +72,10 @@ the value ``MkT1 x`` can be constructed and deconstructed in a linear context:
::
construct :: a %1 -> MkT1 a
construct :: a %1 -> T1 a
construct x = MkT1 x
deconstruct :: MkT1 a %1 -> a
deconstruct :: T1 a %1 -> a
deconstruct (MkT1 x) = x -- must consume `x` exactly once
When used as a value, ``MkT1`` is given a multiplicity-polymorphic
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment