diff --git a/docs/html/guide/topics/providers/content-provider-basics.jd b/docs/html/guide/topics/providers/content-provider-basics.jd index 16e68d1f3f50a..4f8e1ad64c4bc 100644 --- a/docs/html/guide/topics/providers/content-provider-basics.jd +++ b/docs/html/guide/topics/providers/content-provider-basics.jd @@ -346,8 +346,8 @@ Uri singleUri = ContentUris.withAppendedId(UserDictionary.Words.CONTENT_URI,4);
Note: The {@link android.net.Uri} and {@link android.net.Uri.Builder} classes - contain convenience methods for constructing well-formed Uri objects from strings. The - {@link android.content.ContentUris} contains convenience methods for appending id values to + contain convenience methods for constructing well-formed URI objects from strings. The + {@link android.content.ContentUris} class contains convenience methods for appending id values to a URI. The previous snippet uses {@link android.content.ContentUris#withAppendedId withAppendedId()} to append an id to the UserDictionary content URI.