From e9956f251aee5a25a892e264b7c44733c310a87c Mon Sep 17 00:00:00 2001
From: Dan Dascalescu
Date: Tue, 12 Jan 2016 16:54:25 -0800
Subject: [PATCH] docs: Add missing "classes" to Content Provider Basics
Also uppercase "Uri" to "URI"
bug: 26339372
Change-Id: I822889f490356cd680a0b29c2b66429d5888e654
---
docs/html/guide/topics/providers/content-provider-basics.jd | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
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.