Skip to content

Commit

Permalink
Cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
mlangc committed Mar 6, 2020
1 parent 116a539 commit 084a240
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ object SomeObject extends LoggingSupport {
_ <- ZIO.sleep(8.millis).perfLog(
// See below for more examples with `LogSpec`
LogSpec.onSucceed[Int]((d, i) => debug"Finally done with $i after ${d.render}")
.withThreshold(5.millis))
.withThreshold(5.millis)
)
} yield ()
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ object ReadmeExamplesTest extends DefaultRunnableSpec {
_ <- ZIO.sleep(8.millis).perfLog(
// See below for more examples with `LogSpec`
LogSpec.onSucceed[Int]((d, i) => debug"Finally done with $i after ${d.render}")
.withThreshold(5.millis))
.withThreshold(5.millis)
)
} yield ()
}
}
Expand Down

0 comments on commit 084a240

Please sign in to comment.