From 6a831b7d5cd87b5b2c7660c84ed34f8ccc5ae275 Mon Sep 17 00:00:00 2001 From: Scott Main Date: Tue, 8 Oct 2013 13:38:31 -0700 Subject: [PATCH] fix typo in code comment Change-Id: Iefe5a52db4bb5852f3651487e97917879cdfa890 --- docs/html/training/basics/fragments/fragment-ui.jd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/html/training/basics/fragments/fragment-ui.jd b/docs/html/training/basics/fragments/fragment-ui.jd index db3119b252c2c..14469bf0380fc 100644 --- a/docs/html/training/basics/fragments/fragment-ui.jd +++ b/docs/html/training/basics/fragments/fragment-ui.jd @@ -122,11 +122,11 @@ public class MainActivity extends FragmentActivity { return; } - // Create an instance of ExampleFragment + // Create a new Fragment to be placed in the activity layout HeadlinesFragment firstFragment = new HeadlinesFragment(); - // In case this activity was started with special instructions from an Intent, - // pass the Intent's extras to the fragment as arguments + // In case this activity was started with special instructions from an + // Intent, pass the Intent's extras to the fragment as arguments firstFragment.setArguments(getIntent().getExtras()); // Add the fragment to the 'fragment_container' FrameLayout