summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Scott Main <smain@google.com> 2014-03-27 11:53:38 -0700
committer Scott Main <smain@google.com> 2014-03-27 11:53:38 -0700
commit0c933df6d09dfb3923e0891028c67249bc8887d5 (patch)
tree6020708b850e87dd34f0a2744d134aff706659e6
parentf9943d0ecf4d3360064a4cec0b1ffd6767db5612 (diff)
fix bug in code snippet
Change-Id: I98f582d23e5522ef29b9b366bf4a7175eac0bbd5
-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 a3d45df5fbe3..82438968d636 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>