From de66aad4f405a90977df742d59a754e87387a9af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Mon, 21 Aug 2023 13:51:27 +0200 Subject: [PATCH] docs: fix typo --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 97f64b76..1579e78b 100644 --- a/README.md +++ b/README.md @@ -112,11 +112,11 @@ await ofetch('/url', { ignoreResponseError: true }) - `503` - Service Unavailable - `504` - Gateway Timeout -You can specifcy amount of retires and delay between them using `retry` and `retryDelay` options. +You can specifcy amount of retry and delay between them using `retry` and `retryDelay` options. -Default for `retry` is `1` retry, except for `POST`, `PUT`, `PATCH` and `DELETE` methods ofetch does not retry. +Default for `retry` is `1` retry, except for `POST`, `PUT`, `PATCH` and `DELETE` methods where `ofetch` does not retry. -Default for `retryDelay` is zero ms. +Default for `retryDelay` is `0` ms. ```ts await ofetch('http://google.com/404', {