diff options
| author | 2014-05-06 17:07:16 -0700 | |
|---|---|---|
| committer | 2014-05-06 17:07:16 -0700 | |
| commit | 5f9ea81c99306b2741db3109fb68b52c652f39f2 (patch) | |
| tree | 24f6202197cfd24b66cd9df32d1df46c24709eff | |
| parent | 5269a01c6d47b3a37736d9b30f24e091710ff064 (diff) | |
Doc fix in TypeEvaluator method docs
Change-Id: Ie20ba820b0a3a6b8f0f6120dfcfc8bba6adf29b3
| -rw-r--r-- | core/java/android/animation/TypeEvaluator.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/animation/TypeEvaluator.java b/core/java/android/animation/TypeEvaluator.java index 2640457c4b4a..429c4356f10a 100644 --- a/core/java/android/animation/TypeEvaluator.java +++ b/core/java/android/animation/TypeEvaluator.java @@ -29,7 +29,7 @@ public interface TypeEvaluator<T> { /** * This function returns the result of linearly interpolating the start and end values, with * <code>fraction</code> representing the proportion between the start and end values. The - * calculation is a simple parametric calculation: <code>result = x0 + t * (v1 - v0)</code>, + * calculation is a simple parametric calculation: <code>result = x0 + t * (x1 - x0)</code>, * where <code>x0</code> is <code>startValue</code>, <code>x1</code> is <code>endValue</code>, * and <code>t</code> is <code>fraction</code>. * |