We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a34416 commit 67c8155Copy full SHA for 67c8155
src/FSharpPlus/Control/Monad.fs
@@ -167,7 +167,7 @@ type Return =
167
static member Return (_: string , _: Return ) = fun (x: char) -> string x : string
168
static member Return (_: StringBuilder , _: Return ) = fun (x: char) -> new StringBuilder (string x) : StringBuilder
169
static member Return (_: 'a Set , _: Return ) = fun (x: 'a ) -> Set.singleton x
170
- static member Return (_: 'a Set2 , _: Return ) = fun (_: 'a ) -> Set2() : 'a Set2
+ static member Return (_: 'a HashSet , _: Return ) = fun (x: 'a ) -> HashSet.singleton x : 'a HashSet
171
172
173
type Delay =
0 commit comments