Fix bad wording in pointer events doc

Summary:Fix bad wording in the docs change I did in #6534

cc mkonicek
Closes https://github.com/facebook/react-native/pull/6598

Differential Revision: D3085957

Pulled By: vjeux

fb-gh-sync-id: 2b45ac72acf089be6cf8e815aac430a2ce9d08ed
shipit-source-id: 2b45ac72acf089be6cf8e815aac430a2ce9d08ed
This commit is contained in:
Janic Duplessis 2016-03-24 19:52:35 -07:00 committed by Facebook Github Bot 8
parent ca353d0829
commit 56c40baa06
1 changed files with 2 additions and 2 deletions

View File

@ -232,7 +232,7 @@ const View = React.createClass({
* - 'auto': The View can be the target of touch events.
* - 'none': The View is never the target of touch events.
* - 'box-none': The View is never the target of touch events but it's
* subviews can be. It behaves like if the following classes
* subviews can be. It behaves like if the view had the following classes
* in CSS:
* ```
* .box-none {
@ -243,7 +243,7 @@ const View = React.createClass({
* }
* ```
* - 'box-only': The view can be the target of touch events but it's
* subviews cannot be. It behaves like if the following classes
* subviews cannot be. It behaves like if the view had the following classes
* in CSS:
* ```
* .box-only {