Skip to content

Commit 67c8155

Browse files
committed
+ HashSet as Pointed
1 parent 5a34416 commit 67c8155

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FSharpPlus/Control/Monad.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ type Return =
167167
static member Return (_: string , _: Return ) = fun (x: char) -> string x : string
168168
static member Return (_: StringBuilder , _: Return ) = fun (x: char) -> new StringBuilder (string x) : StringBuilder
169169
static member Return (_: 'a Set , _: Return ) = fun (x: 'a ) -> Set.singleton x
170-
static member Return (_: 'a Set2 , _: Return ) = fun (_: 'a ) -> Set2() : 'a Set2
170+
static member Return (_: 'a HashSet , _: Return ) = fun (x: 'a ) -> HashSet.singleton x : 'a HashSet
171171

172172

173173
type Delay =

0 commit comments

Comments
 (0)