summaryrefslogtreecommitdiffstats
path: root/docs/html
diff options
context:
space:
mode:
authorScott Main <smain@google.com>2013-10-09 16:07:16 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-10-09 16:07:16 -0700
commit144f2e58830d1deae77675286fb7eafb27e456bd (patch)
treed6977f21a041c834b7726f396fe45cd1a275d3db /docs/html
parent5ab9af410e1ba572e8ac0577c2acb5324b65d66c (diff)
parent6a831b7d5cd87b5b2c7660c84ed34f8ccc5ae275 (diff)
downloadframeworks_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.jd6
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