summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2019-11-09 02:27:54 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2019-11-09 02:27:54 +0000
commitbab7d8512b0507fe62c37b2f19faaca0e2d787ef (patch)
treea40504b8bc53eb3e90133e879cefb41c7eb54e80
parent2c7d94c7edf41f49b433d023a9d2efa6d71f54d7 (diff)
parenta39ce8b0e6dcc2f7e8410869447147f26c3231ed (diff)
downloadbase-bab7d8512b0507fe62c37b2f19faaca0e2d787ef.tar.gz
Merge "docs: fix typos" into qt-dev
-rw-r--r--core/java/android/animation/FloatEvaluator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/animation/FloatEvaluator.java b/core/java/android/animation/FloatEvaluator.java
index 9463aa12d116..ae90e37d4c71 100644
--- a/core/java/android/animation/FloatEvaluator.java
+++ b/core/java/android/animation/FloatEvaluator.java
@@ -24,7 +24,7 @@ public class FloatEvaluator implements TypeEvaluator<Number> {
/**
* 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>.
*