am 44dbef7e: Merge "Doc fix in TypeEvaluator method docs"

* commit '44dbef7ea2082ad5ca7f6671d41c59ffd7d8cee1':
  Doc fix in TypeEvaluator method docs
This commit is contained in:
Chet Haase
2014-05-07 00:23:33 +00:00
committed by Android Git Automerger

View File

@@ -29,7 +29,7 @@ public interface TypeEvaluator<T> {
/**
* 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>.
*