From 27d2fbcd1bd31bf4cb7e299f66407d0b4e1630e5 Mon Sep 17 00:00:00 2001 From: Dan Dascalescu Date: Tue, 12 Jan 2016 16:37:41 -0800 Subject: [PATCH] Add missing "from" in Content Provider Basics bug: 26339580 Change-Id: I173b8c7f4f041aa5a685f0bf45fc2a746c0fa65a --- docs/html/guide/topics/providers/content-provider-basics.jd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/html/guide/topics/providers/content-provider-basics.jd b/docs/html/guide/topics/providers/content-provider-basics.jd index 16e68d1f3f50a..5fb479284fac8 100644 --- a/docs/html/guide/topics/providers/content-provider-basics.jd +++ b/docs/html/guide/topics/providers/content-provider-basics.jd @@ -407,7 +407,7 @@ Uri singleUri = ContentUris.withAppendedId(UserDictionary.Words.CONTENT_URI,4);

Constructing the query

- The next step in retrieving data a provider is to construct a query. This first snippet + The next step in retrieving data from a provider is to construct a query. This first snippet defines some variables for accessing the User Dictionary Provider: