summaryrefslogtreecommitdiffstats
path: root/docs/html/guide/components
diff options
context:
space:
mode:
authorScott Main <smain@google.com>2013-01-04 17:41:54 -0800
committerScott Main <smain@google.com>2013-01-04 18:09:29 -0800
commitf8daf19971606a9fa27339747318ac061321bcb1 (patch)
treeac0c7276d11600457e0b532fdcc0b597ff66c5f0 /docs/html/guide/components
parent197d0a6688ccf72632b461987671f1f2802935b7 (diff)
downloadframeworks_base-f8daf19971606a9fa27339747318ac061321bcb1.zip
frameworks_base-f8daf19971606a9fa27339747318ac061321bcb1.tar.gz
frameworks_base-f8daf19971606a9fa27339747318ac061321bcb1.tar.bz2
docs: misc bug fixes. including important versioning fixes for first app class
Change-Id: Ifda2509fc90dd795bfd6c5e9b3d7eebcbd77892a
Diffstat (limited to 'docs/html/guide/components')
-rw-r--r--docs/html/guide/components/aidl.jd2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/guide/components/aidl.jd b/docs/html/guide/components/aidl.jd
index 805b7ec..0be6e6f 100644
--- a/docs/html/guide/components/aidl.jd
+++ b/docs/html/guide/components/aidl.jd
@@ -208,7 +208,7 @@ YourInterface.Stub}) and declares all the methods from the {@code .aidl} file.</
defines a few helper methods, most notably {@code asInterface()}, which takes an {@link
android.os.IBinder} (usually the one passed to a client's {@link
android.content.ServiceConnection#onServiceConnected onServiceConnected()} callback method) and
-returns an instance of the stub interface. See the section <a href="#calling">Calling an IPC
+returns an instance of the stub interface. See the section <a href="#Calling">Calling an IPC
Method</a> for more details on how to make this cast.</p>
<p>To implement the interface generated from the {@code .aidl}, extend the generated {@link