Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
hipjim committed Apr 29, 2017
1 parent f521b2e commit 3bf4d28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/scala/util/retry/blocking/Retry.scala
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import scala.util.control.NonFatal
* RetryStrategy.fixedBackOff(retryDuration = 1.seconds, maxAttempts = 2)
*
* val r = Retry(1 / 1) match {
* case Success(x) => println(x)
* case Failure(t) => println(t)
* case Success(x) => x
* case Failure(t) => log("Exception occurred", t)
* }
* }}}
*/
Expand Down

0 comments on commit 3bf4d28

Please sign in to comment.