From 5f9ea81c99306b2741db3109fb68b52c652f39f2 Mon Sep 17 00:00:00 2001 From: Chet Haase Date: Tue, 6 May 2014 17:07:16 -0700 Subject: [PATCH] Doc fix in TypeEvaluator method docs Change-Id: Ie20ba820b0a3a6b8f0f6120dfcfc8bba6adf29b3 --- core/java/android/animation/TypeEvaluator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/animation/TypeEvaluator.java b/core/java/android/animation/TypeEvaluator.java index 2640457c4b4a6..429c4356f10ad 100644 --- a/core/java/android/animation/TypeEvaluator.java +++ b/core/java/android/animation/TypeEvaluator.java @@ -29,7 +29,7 @@ public interface TypeEvaluator { /** * This function returns the result of linearly interpolating the start and end values, with * fraction representing the proportion between the start and end values. The - * calculation is a simple parametric calculation: result = x0 + t * (v1 - v0), + * calculation is a simple parametric calculation: result = x0 + t * (x1 - x0), * where x0 is startValue, x1 is endValue, * and t is fraction. *