diff --git a/Libraries/Components/ScrollView/ScrollView.js b/Libraries/Components/ScrollView/ScrollView.js index e8c4367ed8d9f7..daee3149f2d841 100644 --- a/Libraries/Components/ScrollView/ScrollView.js +++ b/Libraries/Components/ScrollView/ScrollView.js @@ -231,11 +231,14 @@ var ScrollView = React.createClass({ scrollEnabled: PropTypes.bool, /** * This controls how often the scroll event will be fired while scrolling - * (in events per seconds). A higher number yields better accuracy for code + * (as a time interval in ms). A lower number yields better accuracy for code * that is tracking the scroll position, but can lead to scroll performance * problems due to the volume of information being send over the bridge. - * The default value is zero, which means the scroll event will be sent - * only once each time the view is scrolled. + * You will not notice a difference between values set between 1-16 as the + * JS run loop is synced to the screen refresh rate. If you do not need precise + * scroll position tracking, set this value higher to limit the information + * being sent across the bridge. The default value is zero, which results in + * the scroll event being sent only once each time the view is scrolled. * @platform ios */ scrollEventThrottle: PropTypes.number,