From 0355128699bb5e5124b27b498d3262652317c43b Mon Sep 17 00:00:00 2001 From: Kevin Hufnagle Date: Wed, 21 Sep 2016 19:51:32 -0700 Subject: docs: Fixed syntax error in "Content URI patterns" code sample Bug: 31624162 Change-Id: Id1720c3ebb6eff22384a48d8c1a4ed56abde00f4 --- docs/html/guide/topics/providers/content-provider-creating.jd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/html/guide') diff --git a/docs/html/guide/topics/providers/content-provider-creating.jd b/docs/html/guide/topics/providers/content-provider-creating.jd index ec6909c89136..59dc108e3b36 100755 --- a/docs/html/guide/topics/providers/content-provider-creating.jd +++ b/docs/html/guide/topics/providers/content-provider-creating.jd @@ -460,7 +460,7 @@ public class ExampleProvider extends ContentProvider { * present. Get the last path segment from the URI; this is the _ID value. * Then, append the value to the WHERE clause for the query */ - selection = selection + "_ID = " uri.getLastPathSegment(); + selection = selection + "_ID = " + uri.getLastPathSegment(); break; default: -- cgit v1.2.3-59-g8ed1b