From d6f46c693a48d21714e8648d2c5819337ed4c6ac Mon Sep 17 00:00:00 2001 From: Antti Moilanen Date: Tue, 20 Oct 2015 22:46:47 +0300 Subject: [PATCH] Fixed one typo and made one sentence more readable by adding 'and' to it. --- docs/DirectManipulation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/DirectManipulation.md b/docs/DirectManipulation.md index 8939c59e5..77551e590 100644 --- a/docs/DirectManipulation.md +++ b/docs/DirectManipulation.md @@ -155,10 +155,10 @@ You may have noticed that we passed all of the props down to the child view using `{...this.props}`. The reason for this is that `TouchableOpacity` is actually a composite component, and so in addition to depending on `setNativeProps` on its child, it also requires that the -child perform touch handling. To dot this, it passes on [various +child perform touch handling. To do this, it passes on [various props](https://facebook.github.io/react-native/docs/view.html#onmoveshouldsetresponder) that call back to the `TouchableOpacity` component. -`TouchableHighlight`, in contrast, is backed by a native view only +`TouchableHighlight`, in contrast, is backed by a native view and only requires that we implement `setNativeProps`. ## Precomputing style