summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChet Haase <chet@google.com>2014-05-07 00:18:43 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-05-07 00:18:43 +0000
commit5b37b5e51db4e3a6d94b8e8b2048d3571d1a0a64 (patch)
tree0384592c9424386da95b2d5635326d94df8dce18
parent3b23c019cf8d78e199ac56f677a6896f9667b868 (diff)
parent5f9ea81c99306b2741db3109fb68b52c652f39f2 (diff)
downloadframeworks_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.java2
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>.
*