summaryrefslogtreecommitdiffstats
path: root/docs/html/guide
diff options
context:
space:
mode:
authorScott Main <smain@google.com>2012-07-02 21:47:20 -0700
committerScott Main <smain@google.com>2012-07-02 21:47:20 -0700
commit399df5677bd116a016664a10a0da432da29e829d (patch)
tree915caefa7523392872acd3b69a66d4b5bff71dc4 /docs/html/guide
parentf212878e3513b378eac622e5b03b0ac3aee91127 (diff)
downloadframeworks_base-399df5677bd116a016664a10a0da432da29e829d.zip
frameworks_base-399df5677bd116a016664a10a0da432da29e829d.tar.gz
frameworks_base-399df5677bd116a016664a10a0da432da29e829d.tar.bz2
docs: various link fixes and other typos from external tracker
Change-Id: I2a107f7e16429c0fe80c5e4cb67ecfaf267db301
Diffstat (limited to 'docs/html/guide')
-rw-r--r--docs/html/guide/topics/providers/content-provider-creating.jd2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/guide/topics/providers/content-provider-creating.jd b/docs/html/guide/topics/providers/content-provider-creating.jd
index bad5390..ebd7c25 100644
--- a/docs/html/guide/topics/providers/content-provider-creating.jd
+++ b/docs/html/guide/topics/providers/content-provider-creating.jd
@@ -401,7 +401,7 @@ page.title=Creating a Content Provider
</p>
<p>
The method {@link android.content.UriMatcher#addURI(String, String, int) addURI()} maps an
- authority and path to an integer value. The method android.content.UriMatcher#match(Uri)
+ authority and path to an integer value. The method {@link android.content.UriMatcher#match(Uri)
match()} returns the integer value for a URI. A <code>switch</code> statement
chooses between querying the entire table, and querying for a single record:
</p>