Fix wrong bracket location in nfc tutorial
authorJihoon Jung <jh8801.jung@samsung.com>
Mon, 21 Sep 2015 10:21:24 +0000 (19:21 +0900)
committerJihoon Jung <jh8801.jung@samsung.com>
Mon, 21 Sep 2015 10:22:05 +0000 (19:22 +0900)
Signed-off-by: Ji-hoon Jung <jh8801.jung@samsung.com>
Change-Id: Ia7a87da416fd93319f96f115034dcdaf19320ff9

org.tizen.tutorials/html/native/network/nfc_tutorial_n.htm

index d816418..256a080 100644 (file)
@@ -767,7 +767,7 @@ if (ret != NFC_ERROR_NONE)
 <ul><li>To determine whether the application is an active handler for a specific AID or category, use the <span style="font-family: Courier New,Courier,monospace;">nfc_se_is_activated_handler_for_aid()</span> and <span style="font-family: Courier New,Courier,monospace;">nfc_se_is_activated_handler_for_category()</span> functions:
 
 <pre class="prettyprint">int ret = NFC_ERROR_NONE;
-const char[] aid = {0x00, 0x01, 0x02, 0x03};
+const char aid[] = {0x00, 0x01, 0x02, 0x03};
 bool is_activated_handler = false;
 
 ret = nfc_se_is_activated_handler_for_aid(NFC_SE_TYPE_HCE, aid, &amp;is_activated_handler);
@@ -814,7 +814,7 @@ else
 </pre></li>
 <li>To register or unregister the AID at application runtime, use the <span style="font-family: Courier New,Courier,monospace;">nfc_se_register_aid()</span> and <span style="font-family: Courier New,Courier,monospace;">nfc_se_unregister_aid()</span> functions:
 <pre class="prettyprint">int ret = NFC_ERROR_NONE;
-const char[] aid = {0x0A, 0x0B, 0x0C, 0x0D};
+const char aid[] = {0x0A, 0x0B, 0x0C, 0x0D};
 
 ret = nfc_se_register_aid(NFC_SE_TYPE_HCE, NFC_CARD_EMULATION_CATEGORY_OTHER, aid);
 
@@ -1238,4 +1238,4 @@ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga
 </script>
 
  </body>
-</html>
\ No newline at end of file
+</html>