From 53cd980fe5b55504d4be262f52ddcb8744bd6bd5 Mon Sep 17 00:00:00 2001 From: Kevin Hufnagle Date: Fri, 18 Mar 2016 15:19:43 -0700 Subject: [PATCH] docs: Added missing closing parenthesis in sample code The code sample within the "Return a Result" section of the "Allowing Other Apps to Start Your Activity" page was missing a closing parenthesis at the end of the second line. This parenthesis should now appear. Bug: 26845664 Change-Id: Iec58b86889d6e8fa6ad5327678d5e6d63d34f85f --- docs/html/training/basics/intents/filters.jd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/html/training/basics/intents/filters.jd b/docs/html/training/basics/intents/filters.jd index 221e31bd7718f..0b1f5e1a6fe25 100644 --- a/docs/html/training/basics/intents/filters.jd +++ b/docs/html/training/basics/intents/filters.jd @@ -197,7 +197,7 @@ example:

 // Create intent to deliver some kind of result data
-Intent result = new Intent("com.example.RESULT_ACTION", Uri.parse("content://result_uri");
+Intent result = new Intent("com.example.RESULT_ACTION", Uri.parse("content://result_uri"));
 setResult(Activity.RESULT_OK, result);
 finish();