From 0f8144fb611d0ebf56ba0aee1d1c41122aa67939 Mon Sep 17 00:00:00 2001 From: Bohdan Ganicky Date: Tue, 20 Sep 2016 02:23:11 +0200 Subject: [PATCH] Fixed typo in TutorialReactNative.md (#1735) --- docs/TutorialReactNative.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/TutorialReactNative.md b/docs/TutorialReactNative.md index a46b9411a20d..4e0642a8d343 100644 --- a/docs/TutorialReactNative.md +++ b/docs/TutorialReactNative.md @@ -195,7 +195,7 @@ The [`moduleNameMapper`](api.html#modulenamemapper-object-string-string) can be The jest-react-native preset comes with a few default mocks that are applied on a react-native repository. However some react-native components or third party components rely on native code to be rendered. In such cases, Jest's manual mocking system can help to mock out the underlying implementation. -For example, if you code depends on a third party native video component called `react-native-video` you might want to stub it out with a manual mock like this: +For example, if your code depends on a third party native video component called `react-native-video` you might want to stub it out with a manual mock like this: ```js jest.mock('react-native-video', () => 'Video');