From 9b9dd8f565e4bc04d3c32da074de328334b5bc05 Mon Sep 17 00:00:00 2001 From: Oskar Mathieu Gewalli Date: Tue, 11 Aug 2026 13:57:03 +0200 Subject: [PATCH] fix: Compilation chokes on nowarn --- src/FSharpPlus.Docs/Samples/Collections.fsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/FSharpPlus.Docs/Samples/Collections.fsx b/src/FSharpPlus.Docs/Samples/Collections.fsx index 2567acef2..dab44e355 100644 --- a/src/FSharpPlus.Docs/Samples/Collections.fsx +++ b/src/FSharpPlus.Docs/Samples/Collections.fsx @@ -77,6 +77,6 @@ type WrappedListB'<'s> = WrappedListB' of 's list with // Same as B but without let five = filter ((=) 5) (WrappedListB [1;2;3;4;5;6]) // <- Uses the default method for filter. -#nowarn // interrupt compilation +;; // interrupt compilation -let five' = filter ((=) 5) (WrappedListB' [1;2;3;4;5;6]) // <- Uses the default method for filter. \ No newline at end of file +let five' = filter ((=) 5) (WrappedListB' [1;2;3;4;5;6]) // <- Uses the default method for filter.