Skip to content

Commit

Permalink
Merge pull request #695 from mjohns39/main
Browse files Browse the repository at this point in the history
Fixed unbalanced parentheses
  • Loading branch information
lorandszakacs authored Sep 30, 2022
2 parents c5053c7 + 738a486 commit 03e2fbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ object MyVanillaLoggingThing {
val logger: Logger = Logger(LoggerFactory.getLogger(getClass.getName))

def doSomething(): IO[Unit] =
IO(logger.info("Doing something!") *> IO.println("Hello, World!")
IO(logger.info("Doing something!")) *> IO.println("Hello, World!")

}
```
Expand Down

0 comments on commit 03e2fbc

Please sign in to comment.