From ed45f960122e5e3848dfbb4382304f774417b5e9 Mon Sep 17 00:00:00 2001 From: Dan Beneventano Date: Fri, 2 Apr 2021 18:58:43 -0600 Subject: [PATCH] (docs) - Update retry-operations.md (#1505) --- docs/advanced/retry-operations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced/retry-operations.md b/docs/advanced/retry-operations.md index 034a537252..64151d8220 100644 --- a/docs/advanced/retry-operations.md +++ b/docs/advanced/retry-operations.md @@ -47,7 +47,7 @@ const client = createClient({ }); ``` -We want to place the `retryExchange` after the `fetchExchange` so that retries are only performed _after_ the operation has passed through the cache and has attempted to fetch. +We want to place the `retryExchange` before the `fetchExchange` so that retries are only performed _after_ the operation has passed through the cache and has attempted to fetch. ## The Options