diff options
author | Scott Main <smain@google.com> | 2013-10-09 16:07:16 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-10-09 16:07:16 -0700 |
commit | 144f2e58830d1deae77675286fb7eafb27e456bd (patch) | |
tree | d6977f21a041c834b7726f396fe45cd1a275d3db /docs/html | |
parent | 5ab9af410e1ba572e8ac0577c2acb5324b65d66c (diff) | |
parent | 6a831b7d5cd87b5b2c7660c84ed34f8ccc5ae275 (diff) | |
download | frameworks_base-144f2e58830d1deae77675286fb7eafb27e456bd.zip frameworks_base-144f2e58830d1deae77675286fb7eafb27e456bd.tar.gz frameworks_base-144f2e58830d1deae77675286fb7eafb27e456bd.tar.bz2 |
am 6a831b7d: fix typo in code comment
* commit '6a831b7d5cd87b5b2c7660c84ed34f8ccc5ae275':
fix typo in code comment
Diffstat (limited to 'docs/html')
-rw-r--r-- | docs/html/training/basics/fragments/fragment-ui.jd | 6 |
1 files 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 db3119b..14469bf 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 |