summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorScott Main <smain@google.com>2014-03-27 11:53:38 -0700
committerScott Main <smain@google.com>2014-03-27 11:53:38 -0700
commit0c933df6d09dfb3923e0891028c67249bc8887d5 (patch)
tree6020708b850e87dd34f0a2744d134aff706659e6 /docs
parentf9943d0ecf4d3360064a4cec0b1ffd6767db5612 (diff)
downloadframeworks_base-0c933df6d09dfb3923e0891028c67249bc8887d5.zip
frameworks_base-0c933df6d09dfb3923e0891028c67249bc8887d5.tar.gz
frameworks_base-0c933df6d09dfb3923e0891028c67249bc8887d5.tar.bz2
fix bug in code snippet
Change-Id: I98f582d23e5522ef29b9b366bf4a7175eac0bbd5
Diffstat (limited to 'docs')
-rw-r--r--docs/html/wear/notifications/remote-input.jd2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/wear/notifications/remote-input.jd b/docs/html/wear/notifications/remote-input.jd
index a3d45df..8243896 100644
--- a/docs/html/wear/notifications/remote-input.jd
+++ b/docs/html/wear/notifications/remote-input.jd
@@ -119,7 +119,7 @@ RemoteInput remoteInput = new RemoteInput.Builder(EXTRA_VOICE_REPLY)
// Create wearable notification and add remote input
Notification replyNotification =
new WearableNotifications.Builder(replyNotificationBuilder)
- .addRemoteInputForContentIntent(replyAction)
+ .addRemoteInputForContentIntent(remoteInput)
.build();
</pre>