From 9181dd4e08c8ecba8a921d88ea6a53e310cfc2f8 Mon Sep 17 00:00:00 2001 From: Cyril Mottier Date: Sun, 8 Mar 2009 20:37:54 +0100 Subject: [PATCH] A simple fix on a Javadoc comment. The main purpose of this commit is for me to get to know git and repo and how to contribute to the Android project. --- core/java/android/view/animation/TranslateAnimation.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/java/android/view/animation/TranslateAnimation.java b/core/java/android/view/animation/TranslateAnimation.java index ae217688df07e..bb139723f763d 100644 --- a/core/java/android/view/animation/TranslateAnimation.java +++ b/core/java/android/view/animation/TranslateAnimation.java @@ -45,7 +45,7 @@ public class TranslateAnimation extends Animation { private float mToYDelta; /** - * Constructor used whan an ScaleAnimation is loaded from a resource. + * Constructor used when an TranslateAnimation is loaded from a resource. * * @param context Application context to use * @param attrs Attribute set from which to read values @@ -80,7 +80,7 @@ public class TranslateAnimation extends Animation { } /** - * Constructor to use when building a ScaleAnimation from code + * Constructor to use when building a TranslateAnimation from code * * @param fromXDelta Change in X coordinate to apply at the start of the * animation @@ -104,7 +104,7 @@ public class TranslateAnimation extends Animation { } /** - * Constructor to use when building a ScaleAnimation from code + * Constructor to use when building a TranslateAnimation from code * * @param fromXType Specifies how fromXValue should be interpreted. One of * Animation.ABSOLUTE, Animation.RELATIVE_TO_SELF, or