Skip to content

Commit

Permalink
Fix typo in PanResponder documentation
Browse files Browse the repository at this point in the history
Summary:
The documentation said the config object expected `onResponderTerminationRequest` but it expects `onPanResponderTerminationRequest`.
Closes #834
Github Author: Blixt <[email protected]>

Test Plan: Imported from GitHub, without a `Test Plan:` line.
  • Loading branch information
blixt committed Apr 14, 2015
1 parent e193a13 commit f7aeefa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ var currentCentroidY = TouchHistoryMath.currentCentroidY;
* // The accumulated gesture distance since becoming responder is
* // gestureState.d{x,y}
* },
* onResponderTerminationRequest: (evt, gestureState) => true,
* onPanResponderTerminationRequest: (evt, gestureState) => true,
* onPanResponderRelease: (evt, gestureState) => {
* // The user has released all touches while this view is the
* // responder. This typically means a gesture has succeeded
Expand Down

0 comments on commit f7aeefa

Please sign in to comment.