Index: ppapi/c/ppp_messaging.h |
=================================================================== |
--- ppapi/c/ppp_messaging.h (revision 98665) |
+++ ppapi/c/ppp_messaging.h (working copy) |
@@ -3,7 +3,7 @@ |
* found in the LICENSE file. |
*/ |
-/* From ppp_messaging.idl modified Wed Aug 24 20:50:56 2011. */ |
+/* From ppp_messaging.idl modified Mon Aug 29 10:11:34 2011. */ |
#ifndef PPAPI_C_PPP_MESSAGING_H_ |
#define PPAPI_C_PPP_MESSAGING_H_ |
@@ -43,20 +43,20 @@ |
* 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" |
* type="application/x-ppapi-postMessage-example"/> |
@@ -65,7 +65,7 @@ |
* </script> |
* </body> |
* |
- * @endcode |
+ * </code> |
* |
*/ |
void (*HandleMessage)(PP_Instance instance, struct PP_Var message); |