From 3a2608cc17b68ec2e68dbfc5780459695f5ef299 Mon Sep 17 00:00:00 2001 From: kmccormick Date: Mon, 25 Mar 2013 16:00:56 -0700 Subject: Doc update: fix bug in Calendar Provider docs. "Bug: 8472477" Change-Id: Ib2d8b27a0343db45bb1efa326bd573c383573af2 --- docs/html/guide/topics/providers/calendar-provider.jd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, "Kickboxing"); -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, "Rows updated: " + rows); -- cgit v1.1