Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f93cf937 authored by Joshua Baxter's avatar Joshua Baxter Committed by android-build-merger
Browse files

Merge "docs: fix typos" into qt-dev am: bab7d851 am: 983cf20e

am: e8637766

Change-Id: Ie2d3a7936e309d2d1f24a9af78950d3575d7f26f
parents f1581e4d e8637766
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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>.
     *