summaryrefslogtreecommitdiff
path: root/graphics/java/android
diff options
context:
space:
mode:
author Pin Ting <pinting@google.com> 2012-05-12 06:57:53 -0700
committer Android Git Automerger <android-git-automerger@android.com> 2012-05-12 06:57:53 -0700
commit4de3c27cc702c019e7a9304d9e548fc81340ad7e (patch)
tree8989eccb29d736ec4b39fbfa50c32a56c1197f5f /graphics/java/android
parenta1f13767b37fe723895f1f09a907b739885483d7 (diff)
parent59e2a1ea01dc646ca68c6039b39eb809fe1a7a8e (diff)
am 59e2a1ea: Merge "Fix typo in javadoc." into jb-dev
* commit '59e2a1ea01dc646ca68c6039b39eb809fe1a7a8e': Fix typo in javadoc.
Diffstat (limited to 'graphics/java/android')
-rw-r--r--graphics/java/android/graphics/Rect.java8
-rw-r--r--graphics/java/android/graphics/RectF.java8
2 files changed, 8 insertions, 8 deletions
diff --git a/graphics/java/android/graphics/Rect.java b/graphics/java/android/graphics/Rect.java
index ec911b06be75..6c204ab17745 100644
--- a/graphics/java/android/graphics/Rect.java
+++ b/graphics/java/android/graphics/Rect.java
@@ -49,9 +49,9 @@ public final class Rect implements Parcelable {
* checking is performed, so the caller must ensure that left <= right and
* top <= bottom.
*
- * @param left The X coordinate of the left side of the rectagle
+ * @param left The X coordinate of the left side of the rectangle
* @param top The Y coordinate of the top of the rectangle
- * @param right The X coordinate of the right side of the rectagle
+ * @param right The X coordinate of the right side of the rectangle
* @param bottom The Y coordinate of the bottom of the rectangle
*/
public Rect(int left, int top, int right, int bottom) {
@@ -235,9 +235,9 @@ public final class Rect implements Parcelable {
* checking is performed, so it is up to the caller to ensure that
* left <= right and top <= bottom.
*
- * @param left The X coordinate of the left side of the rectagle
+ * @param left The X coordinate of the left side of the rectangle
* @param top The Y coordinate of the top of the rectangle
- * @param right The X coordinate of the right side of the rectagle
+ * @param right The X coordinate of the right side of the rectangle
* @param bottom The Y coordinate of the bottom of the rectangle
*/
public void set(int left, int top, int right, int bottom) {
diff --git a/graphics/java/android/graphics/RectF.java b/graphics/java/android/graphics/RectF.java
index c633d843cd1d..108b7f9b2da0 100644
--- a/graphics/java/android/graphics/RectF.java
+++ b/graphics/java/android/graphics/RectF.java
@@ -46,9 +46,9 @@ public class RectF implements Parcelable {
* checking is performed, so the caller must ensure that left <= right and
* top <= bottom.
*
- * @param left The X coordinate of the left side of the rectagle
+ * @param left The X coordinate of the left side of the rectangle
* @param top The Y coordinate of the top of the rectangle
- * @param right The X coordinate of the right side of the rectagle
+ * @param right The X coordinate of the right side of the rectangle
* @param bottom The Y coordinate of the bottom of the rectangle
*/
public RectF(float left, float top, float right, float bottom) {
@@ -182,9 +182,9 @@ public class RectF implements Parcelable {
* checking is performed, so it is up to the caller to ensure that
* left <= right and top <= bottom.
*
- * @param left The X coordinate of the left side of the rectagle
+ * @param left The X coordinate of the left side of the rectangle
* @param top The Y coordinate of the top of the rectangle
- * @param right The X coordinate of the right side of the rectagle
+ * @param right The X coordinate of the right side of the rectangle
* @param bottom The Y coordinate of the bottom of the rectangle
*/
public void set(float left, float top, float right, float bottom) {