From 4ae20821c29fe6423d0455c41e525c515fa0f0d4 Mon Sep 17 00:00:00 2001 From: Hyunjin Park Date: Mon, 21 Sep 2015 17:37:33 +0900 Subject: [PATCH] [sound] modify text error Change-Id: Ie88be44c568ebc181f4dd83352df190f692a5e1a Signed-off-by: hyunjin park --- org.tizen.web.apireference/html/device_api/mobile/tizen/sound.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.tizen.web.apireference/html/device_api/mobile/tizen/sound.html b/org.tizen.web.apireference/html/device_api/mobile/tizen/sound.html index d331c30..c922e56 100644 --- a/org.tizen.web.apireference/html/device_api/mobile/tizen/sound.html +++ b/org.tizen.web.apireference/html/device_api/mobile/tizen/sound.html @@ -554,7 +554,7 @@ There is a tizen.sound object that allows accessing the functionality of the Sou

Code example:

 var infoArr = tizen.sound.getConnectedDeviceList();
 
  for (var i = 0; i < infoArr.length; i++) {
-     cosole.log( infoArr[i].device );
+     console.log( infoArr[i].device );
  }
  
@@ -587,7 +587,7 @@ There is a tizen.sound object that allows accessing the functionality of the Sou

Code example:

 var infoArr = tizen.sound.getActivatedDeviceList();
 
  for (var i = 0; i < infoArr.length; i++) {
-     cosole.log( infoArr[i].device );
+     console.log( infoArr[i].device );
  }
  
-- 2.7.4