From 43f039ae77a27822c9d7ab97acc4f7ab9d9fd1cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C9=AF=CE=BBrv=C2=AC?= Date: Tue, 14 Jul 2020 09:59:18 +0200 Subject: [PATCH] Fix indentation in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 87c1da4..e5d0838 100644 --- a/README.md +++ b/README.md @@ -133,9 +133,9 @@ With the plugin, both versions are equivalent and result in `MatchError` Generators will now show exhaustivity warnings now whenever regular pattern matches would: ```scala - import cats.syntax.option._ +import cats.syntax.option._ - for (Some(x) <- IO(none[Int])) yield x +for (Some(x) <- IO(none[Int])) yield x ``` ```