From 192914c9cfc1c7e9332b2a72fcb6d128a018e453 Mon Sep 17 00:00:00 2001 From: Mark Eibes Date: Mon, 9 Mar 2020 22:52:52 +0100 Subject: [PATCH] Update Record.purs Fix a typo --- src/Record.purs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Record.purs b/src/Record.purs index 3c9073b..c1d8dd3 100644 --- a/src/Record.purs +++ b/src/Record.purs @@ -194,7 +194,7 @@ union l r = runFn2 unsafeUnionFn l r -- | For example, hole `?help` is inferred to have type `{ b :: Int }` here: -- | -- | ```purescript --- | disjoinUnion { a: 5 } ?help :: { a :: Int, b :: Int } +-- | disjointUnion { a: 5 } ?help :: { a :: Int, b :: Int } -- | ``` disjointUnion :: forall r1 r2 r3