diff options
| author | 2019-11-08 18:44:23 -0800 | |
|---|---|---|
| committer | 2019-11-08 18:44:23 -0800 | |
| commit | 983cf20e77c53b663fa2b71bc86fbf6bab044d26 (patch) | |
| tree | 46c1c3626a71feac8aa2d9043356359043f228b0 | |
| parent | b2a8b29d10e669402db2979b27acfddb8bd5602a (diff) | |
| parent | bab7d8512b0507fe62c37b2f19faaca0e2d787ef (diff) | |
Merge "docs: fix typos" into qt-dev
am: bab7d8512b
Change-Id: Ia6e23981e604c2906a59b9a14d50c06ae2b92912
| -rw-r--r-- | core/java/android/animation/FloatEvaluator.java | 2 |
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>. * |