Merge "docs: fix typos" into qt-dev am: bab7d8512b

am: 983cf20e77

Change-Id: Ic2dc6a44ef4b7c6042ecade84cace268ee477903
This commit is contained in:
Joshua Baxter
2019-11-08 18:49:36 -08:00
committed by android-build-merger

View File

@@ -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>.
*