summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Jeff Hamilton <> 2009-04-21 15:16:13 -0700
committer The Android Open Source Project <initial-contribution@android.com> 2009-04-21 15:16:13 -0700
commitb0c6dbd53b26b172fe8eb7d117550e4edf7a0c9c (patch)
tree7e488cbf9e5cf737f925f49de0dd86113bfefd60
parent9daf96a377ba6f8ed1083d66f1e2e991cdfeb8ec (diff)
AI 147255: am: CL 147253 am: CL 147250 Fix a nasty typo in the docs for ContentResolver.update(). No code changes.
Original author: jham Merged from: //branches/cupcake/... Original author: android-build Automated import of CL 147255
-rw-r--r--core/java/android/content/ContentResolver.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/content/ContentResolver.java b/core/java/android/content/ContentResolver.java
index 0d886ee23e8d..0a71d572932e 100644
--- a/core/java/android/content/ContentResolver.java
+++ b/core/java/android/content/ContentResolver.java
@@ -541,7 +541,7 @@ public abstract class ContentResolver {
A null value will remove an existing field value.
* @param where A filter to apply to rows before deleting, formatted as an SQL WHERE clause
(excluding the WHERE itself).
- * @return the URL of the newly created row
+ * @return The number of rows updated.
* @throws NullPointerException if uri or values are null
*/
public final int update(Uri uri, ContentValues values, String where,