summaryrefslogtreecommitdiffstats
path: root/ppapi/api/ppp_messaging.idl
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/api/ppp_messaging.idl')
-rw-r--r--ppapi/api/ppp_messaging.idl10
1 files changed, 5 insertions, 5 deletions
diff --git a/ppapi/api/ppp_messaging.idl b/ppapi/api/ppp_messaging.idl
index 4351423..af5f66c 100644
--- a/ppapi/api/ppp_messaging.idl
+++ b/ppapi/api/ppp_messaging.idl
@@ -27,19 +27,19 @@ interface PPP_Messaging {
* JavaScript execution will not be blocked while HandleMessage() is
* processing the message.
*
- * @param[in] instance A <code>PP_Instance</code> indentifying one instance
+ * @param[in] instance A <code>PP_Instance</code> identifying one instance
* of a module.
* @param[in] message A <code>PP_Var</code> containing the data to be sent
* to JavaScript. Message can have an int32_t, double, bool, or string value
* (objects are not supported).
*
- * <strong>Example:</strong>
- *
* The following JavaScript code invokes <code>HandleMessage</code>, passing
* the module instance on which it was invoked, with <code>message</code>
* being a string <code>PP_Var</code> containing "Hello world!"
*
- * @code
+ * <strong>Example:</strong>
+ *
+ * <code>
*
* <body>
* <object id="plugin"
@@ -49,7 +49,7 @@ interface PPP_Messaging {
* </script>
* </body>
*
- * @endcode
+ * </code>
*
*/
void HandleMessage([in] PP_Instance instance, [in] PP_Var message);