summaryrefslogtreecommitdiffstats
path: root/core/java/android/content/ContentResolver.java
diff options
context:
space:
mode:
authorJeff Hamilton <>2009-04-21 15:13:18 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2009-04-21 15:13:18 -0700
commit348c1796d460e43e45e582739956c02c5bc8f602 (patch)
treed79b0df45fde283c41503562ac6d3f84623baaf7 /core/java/android/content/ContentResolver.java
parent874c731ac3399ca038745df83d1545dba33ac367 (diff)
downloadframeworks_base-348c1796d460e43e45e582739956c02c5bc8f602.zip
frameworks_base-348c1796d460e43e45e582739956c02c5bc8f602.tar.gz
frameworks_base-348c1796d460e43e45e582739956c02c5bc8f602.tar.bz2
AI 147253: am: CL 147250 Fix a nasty typo in the docs for ContentResolver.update(). No code changes.
Original author: jham Merged from: //branches/cupcake/... Automated import of CL 147253
Diffstat (limited to 'core/java/android/content/ContentResolver.java')
-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 0d886ee..0a71d57 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,