From e274d500d7e2a7d95bb894a95e28dbc4e8d2d729 Mon Sep 17 00:00:00 2001 From: Jonathan Newman Date: Wed, 26 Feb 2020 08:02:59 -0600 Subject: [PATCH] updated copy in multiple-stores.md --- docs/multiple-stores.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/multiple-stores.md b/docs/multiple-stores.md index f657128..04e1498 100644 --- a/docs/multiple-stores.md +++ b/docs/multiple-stores.md @@ -42,7 +42,7 @@ export default App; Note that each `Provider` must be retrieved using its own `identifier`. In the case of the `owner`, we just use the default one supplied by **mobx-store-provider**. -In the `PedDisplay` component we get each store with the [useStore hook](/api/useStore) making sure to pass the same `identifier` used when retreiving their respective `Provider`. +In the `PedDisplay` component we get each store with the [useStore hook](/api/useStore), making sure to pass the same `identifier` used when retreiving their respective `Provider`: ```javascript // PetDisplay.jsx @@ -63,7 +63,7 @@ function PetDisplay() { export default PetDisplay; ``` -To keep things clean we define the `stores` and their `identifier` in a separate module. +To keep things clean in this example we define the `stores` and their `identifier` in a separate module. ```javascript // stores.js