From 6502bae4568f76e98b0217507bf19e0277999e0d Mon Sep 17 00:00:00 2001 From: Tlekbai Ali Date: Fri, 26 Jun 2020 12:23:53 +0600 Subject: [PATCH] Update README.md --- subjects/keep-trying-or-giveup/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/keep-trying-or-giveup/README.md b/subjects/keep-trying-or-giveup/README.md index a18dbcb3..f90875d9 100644 --- a/subjects/keep-trying-or-giveup/README.md +++ b/subjects/keep-trying-or-giveup/README.md @@ -8,7 +8,7 @@ Create a `retry` function, that takes 2 arguments `retry` returns a function that calls and returns value from `callback` function passing its arguments and catches errors. If error is caught it -should return the `callback` function. If number of errors +should return the `callback` function with catch. If number of errors exceeds `count` then throw an `Error`. > for count of 3, the function will be called at most 4 times: