From bac752632c7f2cea9ae5bb1e21408b4095e71afa Mon Sep 17 00:00:00 2001 From: Sascha Haeberling Date: Thu, 15 Aug 2013 19:37:32 -0700 Subject: [PATCH] Fix typo in JavaDoc for TypeEvaluator. Change-Id: Ice2b2db117e1f91ad70ed55d4cc0b14b86804c1c --- core/java/android/animation/TypeEvaluator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/java/android/animation/TypeEvaluator.java b/core/java/android/animation/TypeEvaluator.java index e738da1130ff..2640457c4b4a 100644 --- a/core/java/android/animation/TypeEvaluator.java +++ b/core/java/android/animation/TypeEvaluator.java @@ -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 { */ public T evaluate(float fraction, T startValue, T endValue); -} \ No newline at end of file +} -- 2.11.0