summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Baxter <jbax@google.com>2019-11-08 18:54:24 -0800
committerandroid-build-merger <android-build-merger@google.com>2019-11-08 18:54:24 -0800
commitf93cf93704a2829d65a49690e312562dd3956252 (patch)
tree5034a5921cfa33b9312722e06eae302e21d0cf8f
parentf1581e4de4103867bf04871129b93927df738501 (diff)
parente86377665e8625406b0fb7a1e8103b9b9474b012 (diff)
downloadbase-f93cf93704a2829d65a49690e312562dd3956252.tar.gz
Merge "docs: fix typos" into qt-dev am: bab7d8512b am: 983cf20e77
am: e86377665e Change-Id: Ie2d3a7936e309d2d1f24a9af78950d3575d7f26f
-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>.
*