summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/html/training/wearables/notifications/creating.jd2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/training/wearables/notifications/creating.jd b/docs/html/training/wearables/notifications/creating.jd
index 9398f96bf528..84e3311aa997 100644
--- a/docs/html/training/wearables/notifications/creating.jd
+++ b/docs/html/training/wearables/notifications/creating.jd
@@ -155,7 +155,7 @@ PendingIntent actionPendingIntent =
// Create the action
NotificationCompat.Action action =
new NotificationCompat.Action.Builder(R.drawable.ic_action,
- getString(R.string.label, actionPendingIntent))
+ getString(R.string.label), actionPendingIntent)
.build();
// Build the notification and add the action via WearableExtender