diff --git a/README.md b/README.md index 24c504a..f7320b2 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ You can create a new instance of timer and start as needed by calling the `start ```swift let timer = Repeater(interval: .seconds(5), mode: .infinite) { _ in - // do something + // do something } timer.start() ``` @@ -100,7 +100,7 @@ Timer instance received in callback is weak. ```swift let token = timer.observe { _ in - // a new observer is called + // a new observer is called } timer.start() ```