Skip to content

Commit 9cf2f89

Browse files
authored
Address non critical F#10 regression
1 parent 4d27f53 commit 9cf2f89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/FSharpPlus.Docs/Samples/Collections.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,6 @@ type WrappedListB'<'s> = WrappedListB' of 's list with // Same as B but without
7777

7878
let five = filter ((=) 5) (WrappedListB [1;2;3;4;5;6]) // <- Uses the default method for filter.
7979

80-
#nowarn // interrupt compilation
80+
#nowarn 3873 // interrupt compilation
8181

82-
let five' = filter ((=) 5) (WrappedListB' [1;2;3;4;5;6]) // <- Uses the default method for filter.
82+
let five' = filter ((=) 5) (WrappedListB' [1;2;3;4;5;6]) // <- Uses the default method for filter.

0 commit comments

Comments
 (0)