Skip to content

Commit

Permalink
Update retries.md
Browse files Browse the repository at this point in the history
As soon as changed to Since
  • Loading branch information
earthspacon authored Nov 16, 2024
1 parent f573df4 commit b9b394f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/website/docs/tutorial/retries.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ retry(characterQuery, {
This code works is pretty straightforward, after first failure of `characterQuery`, it calls it again after 500ms. If it fails again, it will call it again after 500ms and so on up yo 5 times. If it succeeded, it will stop retrying.

::: tip
As soon as Farfetched is [based on Effector](/statements/effector), almost every field of its configs could be static or reactive. So, you can pass a [_Store_](https://effector.dev/en/api/effector/store/) with a number of retires to `times` option as well.
Since Farfetched is [based on Effector](/statements/effector), almost every field in its configuration can be either static or reactive. For example, you can pass a [_Store_](https://effector.dev/en/api/effector/store/) containing the number of retries to the `times` option.
:::

## Filter retries
Expand Down

0 comments on commit b9b394f

Please sign in to comment.