OSDN Git Service

docs: Add missing "classes" to Content Provider Basics
authorDan Dascalescu <dandv@google.com>
Wed, 13 Jan 2016 00:54:25 +0000 (16:54 -0800)
committerDan Dascalescu <dandv@google.com>
Wed, 13 Jan 2016 00:54:25 +0000 (16:54 -0800)
Also uppercase "Uri" to "URI"

bug: 26339372
Change-Id: I822889f490356cd680a0b29c2b66429d5888e654

docs/html/guide/topics/providers/content-provider-basics.jd

index 16e68d1..4f8e1ad 100644 (file)
@@ -346,8 +346,8 @@ Uri singleUri = ContentUris.withAppendedId(UserDictionary.Words.CONTENT_URI,4);
 </p>
 <p class="note">
     <strong>Note:</strong> 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.
 </p>