Changed all @code to <code> and @endcode to </code> as per dmichael. Adding Polina to the review to look at url_loader.h and give approval of text that points to example.
Review URL: http://codereview.chromium.org/7715005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98856 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/ppapi/c/ppb_messaging.h b/ppapi/c/ppb_messaging.h
index be975b0..f12311c 100644
--- a/ppapi/c/ppb_messaging.h
+++ b/ppapi/c/ppb_messaging.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From ppb_messaging.idl modified Wed Aug 24 20:48:00 2011. */
+/* From ppb_messaging.idl modified Mon Aug 29 10:11:34 2011. */
#ifndef PPAPI_C_PPB_MESSAGING_H_
#define PPAPI_C_PPB_MESSAGING_H_
@@ -40,7 +40,7 @@
* the DOM element for the given module instance. A call to PostMessage()
* will not block while the message is processed.
*
- * @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.
@@ -60,7 +60,7 @@
*
* <strong>Example:</strong>
*
- * @code
+ * <code>
*
* <body>
* <object id="plugin"
@@ -73,11 +73,11 @@
* </script>
* </body>
*
- * @endcode
+ * </code>
*
* The module instance then invokes PostMessage() as follows:
*
- * @code
+ * <code>
*
*
* char hello_world[] = "Hello world!";
@@ -87,7 +87,7 @@
* ppb_messaging_interface->PostMessage(instance, hello_var); // Copies var.
* ppb_var_interface->Release(hello_var);
*
- * @endcode
+ * </code>
*
* The browser will pop-up an alert saying "Hello world!"
*/