From 920060aafec9c311ee89c02a648536b47e32a27a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Osadnik?= Date: Tue, 5 Jun 2018 14:18:02 +0200 Subject: [PATCH] Change error message on interpolation --- Libraries/Animated/src/nodes/AnimatedInterpolation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Animated/src/nodes/AnimatedInterpolation.js b/Libraries/Animated/src/nodes/AnimatedInterpolation.js index e8f9823c20e4f4..db3b64fbdf2c51 100644 --- a/Libraries/Animated/src/nodes/AnimatedInterpolation.js +++ b/Libraries/Animated/src/nodes/AnimatedInterpolation.js @@ -285,7 +285,7 @@ function checkValidInputRange(arr: Array) { * mean this implicit string conversion, you can do something like * String(myThing) */ - 'inputRange must be monotonically increasing ' + arr, + 'inputRange must be monotonically non-decreasing ' + arr, ); } }