Fix typo in GestureResponderSystem.md

Summary:
There is only `timestamp `property in touch native event, `event.nativeEvent.timeStamp` is undefined.
Closes https://github.com/facebook/react-native/pull/11988

Differential Revision: D4489408

Pulled By: mkonicek

fbshipit-source-id: 0148a4107124438f345b8cb584e1832ba51b3a4b
This commit is contained in:
fcFn 2017-01-31 11:47:41 -08:00 committed by Facebook Github Bot
parent 914848759a
commit 7ed529bf2f
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ If the view is responding, the following handlers can be called:
+ `pageX` - The X position of the touch, relative to the root element
+ `pageY` - The Y position of the touch, relative to the root element
+ `target` - The node id of the element receiving the touch event
+ `timeStamp` - A time identifier for the touch, useful for velocity calculation
+ `timestamp` - A time identifier for the touch, useful for velocity calculation
+ `touches` - Array of all current touches on the screen
### Capture ShouldSet Handlers