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

Commit 93fae901 authored by Laura Davis's avatar Laura Davis Committed by android-build-merger
Browse files

Merge "Merge "Docs: fixed variables" into pi-dev am: 11615868" into pi-dev-plus-aosp

am: bd935bf4

Change-Id: I7617577dd4fc8dc0944deb76e95142f96dade2a7
parents d100ab69 bd935bf4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ public class IntEvaluator implements TypeEvaluator<Integer> {
    /**
     * 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>.
     *