From bd88de46a126c1e6dfc84ba6c1f942f51fe57582 Mon Sep 17 00:00:00 2001 From: Taeho Kim Date: Mon, 28 Oct 2013 15:08:53 +0900 Subject: [PATCH] Fixed typo errors in documentation Fixed some type errors in developer documentation. Change-Id: I92629a4350508fb96fda1842741c5ced64171464 Signed-off-by: Taeho Kim --- core/java/android/content/ContentProvider.java | 2 +- core/java/android/view/View.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/java/android/content/ContentProvider.java b/core/java/android/content/ContentProvider.java index cf627d7131ca0..52b61de490b89 100644 --- a/core/java/android/content/ContentProvider.java +++ b/core/java/android/content/ContentProvider.java @@ -822,7 +822,7 @@ public abstract class ContentProvider implements ComponentCallbacks2 { * Implement this to handle requests to delete one or more rows. * The implementation should apply the selection clause when performing * deletion, allowing the operation to affect multiple rows in a directory. - * As a courtesy, call {@link ContentResolver#notifyChange(android.net.Uri ,android.database.ContentObserver) notifyDelete()} + * As a courtesy, call {@link ContentResolver#notifyChange(android.net.Uri ,android.database.ContentObserver) notifyChange()} * after deleting. * This method can be called from multiple threads, as described in * Processes diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index 50638aaf44917..289ec309716dd 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -9704,7 +9704,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, * by the layout system and should not generally be called otherwise, because the property * may be changed at any time by the layout. * - * @param left The bottom of this view, in pixels. + * @param left The left of this view, in pixels. */ public final void setLeft(int left) { if (left != mLeft) { @@ -9771,7 +9771,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, * by the layout system and should not generally be called otherwise, because the property * may be changed at any time by the layout. * - * @param right The bottom of this view, in pixels. + * @param right The right of this view, in pixels. */ public final void setRight(int right) { if (right != mRight) {