diff options
author | Scott Kennedy <skennedy@google.com> | 2014-11-03 13:56:18 -0800 |
---|---|---|
committer | Scott Kennedy <skennedy@google.com> | 2014-11-03 22:22:09 +0000 |
commit | a593fa94fe7e4ad0d6ca4550e96349184815ba19 (patch) | |
tree | 5581872945668adbaa655c7345b0558aa6fd84f2 | |
parent | e1970f12583120613bc94e15841f6a7cc7919f68 (diff) | |
download | frameworks_base-a593fa94fe7e4ad0d6ca4550e96349184815ba19.zip frameworks_base-a593fa94fe7e4ad0d6ca4550e96349184815ba19.tar.gz frameworks_base-a593fa94fe7e4ad0d6ca4550e96349184815ba19.tar.bz2 |
Fix a small typo in a variable name
Change-Id: If431236bf6885b3b0ef2c967869320538222ee33
-rw-r--r-- | docs/html/training/wearables/data-layer/accessing.jd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/training/wearables/data-layer/accessing.jd b/docs/html/training/wearables/data-layer/accessing.jd index 896a698..36e3daa 100644 --- a/docs/html/training/wearables/data-layer/accessing.jd +++ b/docs/html/training/wearables/data-layer/accessing.jd @@ -37,7 +37,7 @@ for more information about creating a <a href="{@docRoot}reference/com/google/an implementing its callbacks, and handling error cases.</p> <pre style="clear:right"> -GoogleApiClient mGoogleAppiClient = new GoogleApiClient.Builder(this) +GoogleApiClient mGoogleApiClient = new GoogleApiClient.Builder(this) .addConnectionCallbacks(new ConnectionCallbacks() { @Override public void onConnected(Bundle connectionHint) { @@ -64,4 +64,4 @@ GoogleApiClient mGoogleAppiClient = new GoogleApiClient.Builder(this) method, as described in <a href="{@docRoot}google/auth/api-client.html#Starting">Accessing Google Play services APIs</a>. When the system invokes the <code>onConnected()</code> callback for your client, you're ready -to use the data layer API.</p>
\ No newline at end of file +to use the data layer API.</p> |