summaryrefslogtreecommitdiffstats
path: root/core/java/android/view/View.java
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/view/View.java
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/view/View.java')
-rw-r--r--core/java/android/view/View.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java
index a651362..0cd449f 100644
--- a/core/java/android/view/View.java
+++ b/core/java/android/view/View.java
@@ -11056,13 +11056,13 @@ public class View implements Drawable.Callback, Drawable.Callback2, KeyEvent.Cal
}
/**
- * <p>Indicates whether this view is attached to an hardware accelerated
+ * <p>Indicates whether this view is attached to a hardware accelerated
* window or not.</p>
*
* <p>Even if this method returns true, it does not mean that every call
* to {@link #draw(android.graphics.Canvas)} will be made with an hardware
* accelerated {@link android.graphics.Canvas}. For instance, if this view
- * is drawn onto an offscren {@link android.graphics.Bitmap} and its
+ * is drawn onto an offscreen {@link android.graphics.Bitmap} and its
* window is hardware accelerated,
* {@link android.graphics.Canvas#isHardwareAccelerated()} will likely
* return false, and this method will return true.</p>
@@ -13125,7 +13125,7 @@ public class View implements Drawable.Callback, Drawable.Callback2, KeyEvent.Cal
}
/**
- * Creates an string of whitespaces used for indentation.
+ * Creates a string of whitespaces used for indentation.
*
* @param depth the indentation level
* @return a String containing (depth * 2 + 3) * 2 white spaces