Index: ppapi/api/ppb_messaging.idl |
=================================================================== |
--- ppapi/api/ppb_messaging.idl (revision 124481) |
+++ ppapi/api/ppb_messaging.idl (working copy) |
@@ -44,7 +44,7 @@ |
* |
* <strong>Example:</strong> |
* |
- * <code> |
+ * @code |
* |
* <body> |
* <object id="plugin" |
@@ -57,13 +57,12 @@ |
* </script> |
* </body> |
* |
- * </code> |
+ * @endcode |
* |
* The module instance then invokes PostMessage() as follows: |
* |
- * <code> |
+ * @code |
* |
- * |
* char hello_world[] = "Hello world!"; |
* PP_Var hello_var = ppb_var_interface->VarFromUtf8(instance, |
* hello_world, |
@@ -71,7 +70,7 @@ |
* ppb_messaging_interface->PostMessage(instance, hello_var); // Copies var. |
* ppb_var_interface->Release(hello_var); |
* |
- * </code> |
+ * @endcode |
* |
* The browser will pop-up an alert saying "Hello world!" |
*/ |