From f0490677b6a0ff7f3ed9faea75f42b99039b777c Mon Sep 17 00:00:00 2001 From: Alireza Mirian Date: Sun, 16 Jul 2023 15:05:58 +0200 Subject: [PATCH] fix a typo in sync-effect.md --- docs/docs/recoil-sync/sync-effect.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/recoil-sync/sync-effect.md b/docs/docs/recoil-sync/sync-effect.md index 0d611884b..eb487768f 100644 --- a/docs/docs/recoil-sync/sync-effect.md +++ b/docs/docs/recoil-sync/sync-effect.md @@ -56,7 +56,7 @@ atom({ ### Atom Families -Atoms in an [atom family](/docs/api-reference/utils/atomFamily) can also by synchronized with [`syncEffect()`](/docs/recoil-sync/api/syncEffect). Each individual atom in the family is treated as a separate item to sync. The default item key will include a serialization of the family parameter. If you specify your own `itemKey` then you should also encode the family parameter to uniquely identify each atom; the parameter can be obtained by using a callback for the atom family `effects` option. +Atoms in an [atom family](/docs/api-reference/utils/atomFamily) can also be synchronized with [`syncEffect()`](/docs/recoil-sync/api/syncEffect). Each individual atom in the family is treated as a separate item to sync. The default item key will include a serialization of the family parameter. If you specify your own `itemKey` then you should also encode the family parameter to uniquely identify each atom; the parameter can be obtained by using a callback for the atom family `effects` option. ```jsx atomFamily({