am 567c7408: Merge "Fix typo in JavaDoc for TypeEvaluator." into klp-dev

* commit '567c7408cbc1f7ae5383e849374c4a9f9d90de46':
  Fix typo in JavaDoc for TypeEvaluator.
This commit is contained in:
Sascha Haeberling
2013-08-16 18:19:14 -07:00
committed by Android Git Automerger

View File

@@ -19,7 +19,7 @@ package android.animation;
/**
* Interface for use with the {@link ValueAnimator#setEvaluator(TypeEvaluator)} function. Evaluators
* allow developers to create animations on arbitrary property types, by allowing them to supply
* custom evaulators for types that are not automatically understood and used by the animation
* custom evaluators for types that are not automatically understood and used by the animation
* system.
*
* @see ValueAnimator#setEvaluator(TypeEvaluator)
@@ -41,4 +41,4 @@ public interface TypeEvaluator<T> {
*/
public T evaluate(float fraction, T startValue, T endValue);
}
}