From aa1c02ab4481d430a0c69438e45f2f801f01c2c4 Mon Sep 17 00:00:00 2001 From: Fred Roth Date: Thu, 21 Mar 2024 13:42:44 +0100 Subject: [PATCH] Fix typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 271df8e..be2cec6 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ However, Scalatest assertions return a value of type `Assertion` by design, in o Unfortunately, this means that in synchronous test suites, every assertion discards this `Assertion` value, triggering the `-Wnonunit-statement` compiler warning. -If you find yourself in this situation, you can disable the `-Wnonunit-discard` option in your test suite like so: +If you find yourself in this situation, you can disable the `-Wnonunit-statement` option in your test suite like so: ```scala import org.typelevel.scalacoptions.ScalacOptions