Fixed unit function

This commit is contained in:
Pat Garrity 2024-02-07 07:42:51 -06:00
parent 4962291f89
commit c3d84bc4a6
Signed by: pfm
GPG key ID: 5CA5D21BAB7F3A76

View file

@ -41,8 +41,8 @@ class Applicative
given A
defn pure: A -> F A
fn unit: F
λ => pure ()
fn unit: F #()
λ => pure #()
end fn
end class