fix params order in comments clamp.js

Summary:
/**
 * param {number} value
 * param {number} min
 * param {number} max
 * return {number}
 */

should be:
/**
 * param {number} min
 * param {number} value
 * param {number} max
 * return {number}
 */

<!--
Thank you for sending the PR! We appreciate you spending the time to work on these changes.

Help us understand your motivation by explaining why you decided to make this change.

You can learn more about contributing to React Native here: http://facebook.github.io/react-native/docs/contributing.html

Happy contributing!

-->

(Write your motivation here.)

(Write your test plan here. If you changed any code, please provide us with clear instructions on how you verified your changes work. Bonus points for screenshots and videos!)
Closes https://github.com/facebook/react-native/pull/16077

Differential Revision: D5938021

Pulled By: shergin

fbshipit-source-id: 3a6e4ff5ab39a657bc0d9271ae2a2600998b2ddf
This commit is contained in:
Gregory 2017-09-28 23:47:38 -07:00 committed by Facebook Github Bot
parent d8cc6e3c2b
commit 3849765ac1
1 changed files with 1 additions and 1 deletions

View File

@ -12,8 +12,8 @@
'use strict';
/**
* @param {number} value
* @param {number} min
* @param {number} value
* @param {number} max
* @return {number}
*/