summaryrefslogtreecommitdiffstats
path: root/core/java/android/animation
diff options
context:
space:
mode:
authorKen Wakasa <kwakasa@google.com>2012-03-09 19:56:35 +0900
committerKen Wakasa <kwakasa@google.com>2012-03-09 22:48:43 +0900
commitf76a50ce8fdc6aea22cabc77b2977a1a15a79630 (patch)
tree52a02b4db9b5acbef944d29c251bf2eae40c625b /core/java/android/animation
parenta64890a02e5561d73da57695dcfc6b35ca05c321 (diff)
downloadframeworks_base-f76a50ce8fdc6aea22cabc77b2977a1a15a79630.zip
frameworks_base-f76a50ce8fdc6aea22cabc77b2977a1a15a79630.tar.gz
frameworks_base-f76a50ce8fdc6aea22cabc77b2977a1a15a79630.tar.bz2
Fix obvious typos under frameworks/base/core
Change-Id: Ia5fc3db1bb51824e7523885553be926bcc42d736
Diffstat (limited to 'core/java/android/animation')
-rw-r--r--core/java/android/animation/Animator.java4
-rwxr-xr-xcore/java/android/animation/ValueAnimator.java2
2 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/animation/Animator.java b/core/java/android/animation/Animator.java
index e01fa1a..788765d 100644
--- a/core/java/android/animation/Animator.java
+++ b/core/java/android/animation/Animator.java
@@ -208,7 +208,7 @@ public abstract class Animator implements Cloneable {
* this call to its child objects to tell them to set up the values. A
* ObjectAnimator object will use the information it has about its target object
* and PropertyValuesHolder objects to get the start values for its properties.
- * An ValueAnimator object will ignore the request since it does not have enough
+ * A ValueAnimator object will ignore the request since it does not have enough
* information (such as a target object) to gather these values.
*/
public void setupStartValues() {
@@ -220,7 +220,7 @@ public abstract class Animator implements Cloneable {
* this call to its child objects to tell them to set up the values. A
* ObjectAnimator object will use the information it has about its target object
* and PropertyValuesHolder objects to get the start values for its properties.
- * An ValueAnimator object will ignore the request since it does not have enough
+ * A ValueAnimator object will ignore the request since it does not have enough
* information (such as a target object) to gather these values.
*/
public void setupEndValues() {
diff --git a/core/java/android/animation/ValueAnimator.java b/core/java/android/animation/ValueAnimator.java
index 954ae66..f69120a 100755
--- a/core/java/android/animation/ValueAnimator.java
+++ b/core/java/android/animation/ValueAnimator.java
@@ -400,7 +400,7 @@ public class ValueAnimator extends Animator {
/**
* Sets the values, per property, being animated between. This function is called internally
- * by the constructors of ValueAnimator that take a list of values. But an ValueAnimator can
+ * by the constructors of ValueAnimator that take a list of values. But a ValueAnimator can
* be constructed without values and this method can be called to set the values manually
* instead.
*