diff options
author | Chet Haase <chet@google.com> | 2014-05-07 00:18:43 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-05-07 00:18:43 +0000 |
commit | 5b37b5e51db4e3a6d94b8e8b2048d3571d1a0a64 (patch) | |
tree | 0384592c9424386da95b2d5635326d94df8dce18 | |
parent | 3b23c019cf8d78e199ac56f677a6896f9667b868 (diff) | |
parent | 5f9ea81c99306b2741db3109fb68b52c652f39f2 (diff) | |
download | frameworks_base-5b37b5e51db4e3a6d94b8e8b2048d3571d1a0a64.zip frameworks_base-5b37b5e51db4e3a6d94b8e8b2048d3571d1a0a64.tar.gz frameworks_base-5b37b5e51db4e3a6d94b8e8b2048d3571d1a0a64.tar.bz2 |
Merge "Doc fix in TypeEvaluator method docs"
-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 2640457..429c435 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>. * |