From ec7e9c645a64b52b2e4084722ef9a08c6f6d8996 Mon Sep 17 00:00:00 2001 From: Natalie Masse Date: Wed, 8 Oct 2014 16:49:13 +0100 Subject: [PATCH] Typo fixed in sample code Change-Id: I15328b663db3cffa44b5fb5c1fa4becd7a7d9f2d --- docs/html/training/wearables/notifications/creating.jd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/html/training/wearables/notifications/creating.jd b/docs/html/training/wearables/notifications/creating.jd index 9398f96bf528f..84e3311aa997d 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