summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkmccormick <kmccormick@google.com>2013-03-25 16:15:11 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-03-25 16:15:11 -0700
commitc15f817e5092970820e6c3fa32c5715127e7bf37 (patch)
treea3d7281f11303012a80e1dffa1dd6bbd7dc02cbf
parentb559b58e950c8fe7ffe0c3201443ab814f24a701 (diff)
parent81aaf3b0195ceb3c134c1b8a31e558fa31fc3e77 (diff)
downloadframeworks_base-c15f817e5092970820e6c3fa32c5715127e7bf37.zip
frameworks_base-c15f817e5092970820e6c3fa32c5715127e7bf37.tar.gz
frameworks_base-c15f817e5092970820e6c3fa32c5715127e7bf37.tar.bz2
am 81aaf3b0: Merge "Doc update: fix bug in Calendar Provider docs." into jb-mr1.1-docs
* commit '81aaf3b0195ceb3c134c1b8a31e558fa31fc3e77': Doc update: fix bug in Calendar Provider docs.
-rw-r--r--docs/html/guide/topics/providers/calendar-provider.jd2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/guide/topics/providers/calendar-provider.jd b/docs/html/guide/topics/providers/calendar-provider.jd
index f53b062..5adc68c 100644
--- a/docs/html/guide/topics/providers/calendar-provider.jd
+++ b/docs/html/guide/topics/providers/calendar-provider.jd
@@ -605,7 +605,7 @@ ContentValues values = new ContentValues();
Uri updateUri = null;
// The new title for the event
values.put(Events.TITLE, &quot;Kickboxing&quot;);
-myUri = ContentUris.withAppendedId(Events.CONTENT_URI, eventID);
+updateUri = ContentUris.withAppendedId(Events.CONTENT_URI, eventID);
int rows = getContentResolver().update(updateUri, values, null, null);
Log.i(DEBUG_TAG, &quot;Rows updated: &quot; + rows); </pre>