Browse Source

Fix typos in docs (#6237)

Co-authored-by: Guy Carmeli <guyca@users.noreply.github.com>
Eduardo Pelitti 4 years ago
parent
commit
31f3283832
No account linked to committer's email address
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      website/docs/docs-Installing.mdx
  2. 1
    1
      website/docs/third-party-mobx.mdx

+ 1
- 1
website/docs/docs-Installing.mdx View File

@@ -20,7 +20,7 @@ Unlike most other libraries, react-native-navigation requires you to make a few
20 20
 
21 21
 in your project's root folder. Make sure to commit the changes introduced by the link script.
22 22
 
23
-If the link script completed successfully, you're good to go! If one of the steps failed, you'll need to complete the relevant step in the manual installation steps bellow.
23
+If the link script completed successfully, you're good to go! If one of the steps failed, you'll need to complete the relevant step in the manual installation steps below.
24 24
 
25 25
 ## Displaying the app root
26 26
 

+ 1
- 1
website/docs/third-party-mobx.mdx View File

@@ -18,7 +18,7 @@ Also the example uses `mobx-react-lite` but you can use the normal `mobx-react`.
18 18
 
19 19
 ## Sharing a store between multiple screens
20 20
 
21
-In the example bellow we will be creating a small Counter app. We will learn how to integrate Mobx with React-Native-Navigation and demonstrate how updating the store from one component, triggers renders in other components connected to the same store.
21
+In the example below we will be creating a small Counter app. We will learn how to integrate Mobx with React-Native-Navigation and demonstrate how updating the store from one component, triggers renders in other components connected to the same store.
22 22
 
23 23
 Once you finish implementing the example, your screen should look similar to this:
24 24
 <img width="30%" src={useBaseUrl('/img/mobx_counter.png')} />