diff options
author | kmccormick <kmccormick@google.com> | 2013-04-03 12:41:12 -0700 |
---|---|---|
committer | kmccormick <kmccormick@google.com> | 2013-04-03 13:04:06 -0700 |
commit | 76dfc02135abae5337b48fe99a1b8c0a7d95e33a (patch) | |
tree | e44e200019cd380ca9fc256099c4e0d3dbc7bea1 /docs/html/guide/components | |
parent | 2ab257231fe774748298ab92f78564a5e19f23f0 (diff) | |
download | frameworks_base-76dfc02135abae5337b48fe99a1b8c0a7d95e33a.zip frameworks_base-76dfc02135abae5337b48fe99a1b8c0a7d95e33a.tar.gz frameworks_base-76dfc02135abae5337b48fe99a1b8c0a7d95e33a.tar.bz2 |
Doc update: clean up ubiquitous typo "the the"
"Bug: 8531405"
Change-Id: Ib2b96dd2c1ab0f4d8abe5a8052bf2ef33f03b8be
Diffstat (limited to 'docs/html/guide/components')
-rw-r--r-- | docs/html/guide/components/fundamentals.jd | 2 | ||||
-rw-r--r-- | docs/html/guide/components/tasks-and-back-stack.jd | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/html/guide/components/fundamentals.jd b/docs/html/guide/components/fundamentals.jd index 2c33a26..ce50022 100644 --- a/docs/html/guide/components/fundamentals.jd +++ b/docs/html/guide/components/fundamentals.jd @@ -345,7 +345,7 @@ receivers can be either declared in the manifest or created dynamically in code {@link android.content.BroadcastReceiver} objects) and registered with the system by calling {@link android.content.Context#registerReceiver registerReceiver()}.</p> -<p>For more about how to structure the manifest file for your application, see the <a +<p>For more about how to structure the manifest file for your application, see <a href="{@docRoot}guide/topics/manifest/manifest-intro.html">The AndroidManifest.xml File</a> documentation. </p> diff --git a/docs/html/guide/components/tasks-and-back-stack.jd b/docs/html/guide/components/tasks-and-back-stack.jd index ecaba8d..a21bf34 100644 --- a/docs/html/guide/components/tasks-and-back-stack.jd +++ b/docs/html/guide/components/tasks-and-back-stack.jd @@ -231,7 +231,7 @@ activities except for the root activity when the user leaves the task.</p> <activity>}</a> manifest element and with flags in the intent that you pass to {@link android.app.Activity#startActivity startActivity()}.</p> -<p>In this regard, the the principal <a +<p>In this regard, the principal <a href="{@docRoot}guide/topics/manifest/activity-element.html">{@code <activity>}</a> attributes you can use are:</p> @@ -319,7 +319,7 @@ each instance can belong to different tasks, and one task can have multiple inst routes the intent to that instance through a call to its {@link android.app.Activity#onNewIntent onNewIntent()} method, rather than creating a new instance of the activity. The activity can be instantiated multiple times, each instance can -belong to different tasks, and one task can have multiple instances (but only if the the +belong to different tasks, and one task can have multiple instances (but only if the activity at the top of the back stack is <em>not</em> an existing instance of the activity). <p>For example, suppose a task's back stack consists of root activity A with activities B, C, and D on top (the stack is A-B-C-D; D is on top). An intent arrives for an activity of type D. |