Fixed spelling errors and changed all references to PP_Resource to be the
same (on @param tags) as per polina.
Review URL: http://codereview.chromium.org/7701004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98972 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/ppapi/api/ppb_core.idl b/ppapi/api/ppb_core.idl
index f7ef951..a02d4bf 100644
--- a/ppapi/api/ppb_core.idl
+++ b/ppapi/api/ppb_core.idl
@@ -23,14 +23,16 @@
    *
    * AddRefResource() adds a reference to a resource.
    *
-   * @param[in] config A <code>PP_Resource</code> containing the resource.
+   * @param[in] config A <code>PP_Resource</code> corresponding to a
+   * resource.
    */
   void AddRefResource([in] PP_Resource resource);
 
   /**
    * ReleaseResource() removes a reference from a resource.
    *
-   * @param[in] config A <code>PP_Resource</code> containing the resource.
+   * @param[in] config A <code>PP_Resource</code> corresponding to a
+   * resource.
    */
   void ReleaseResource([in] PP_Resource resource);
 
diff --git a/ppapi/api/ppb_file_io.idl b/ppapi/api/ppb_file_io.idl
index 4fe9e9f..0d2c845b 100644
--- a/ppapi/api/ppb_file_io.idl
+++ b/ppapi/api/ppb_file_io.idl
@@ -57,7 +57,7 @@
   /**
    * Create() creates a new FileIO object.
    *
-   * @param[in] instance A <code>PP_Instance</code> indentifying the instance
+   * @param[in] instance A <code>PP_Instance</code> identifying the instance
    * with the file.
    *
    * @return A <code>PP_Resource</code> corresponding to a FileIO if
diff --git a/ppapi/api/ppb_file_system.idl b/ppapi/api/ppb_file_system.idl
index 7eb2e7e..f221c66 100644
--- a/ppapi/api/ppb_file_system.idl
+++ b/ppapi/api/ppb_file_system.idl
@@ -18,7 +18,7 @@
 interface PPB_FileSystem {
   /** Create() creates a file system object of the given type.
    *
-   * @param[in] instance A <code>PP_Instance</code> indentifying the instance
+   * @param[in] instance A <code>PP_Instance</code> identifying the instance
    * with the file.
    * @param[in] type A file system type as defined by
    * <code>PP_FileSystemType</code> enum.
diff --git a/ppapi/api/ppb_image_data.idl b/ppapi/api/ppb_image_data.idl
index eafd03a..fd05dee 100644
--- a/ppapi/api/ppb_image_data.idl
+++ b/ppapi/api/ppb_image_data.idl
@@ -106,7 +106,7 @@
    * memory, but may contain data from a previous image produced by the same
    * module if the bitmap was cached and re-used.
    *
-   * @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] format The desired image data format.
    * @param[in] size A pointer to a <code>PP_Size</code> containing the image
@@ -118,7 +118,7 @@
    * current contents of the bitmap will be undefined, and the module should
    * be sure to set all the pixels.
    *
-   * @return A <code>PP_Resource</code> with a nonzero ID on succes or zero on
+   * @return A <code>PP_Resource</code> with a nonzero ID on success or zero on
    * failure. Failure means the instance, image size, or format was invalid.
    */
   PP_Resource Create(
diff --git a/ppapi/api/ppb_input_event.idl b/ppapi/api/ppb_input_event.idl
index 0820b9d..016777a 100644
--- a/ppapi/api/ppb_input_event.idl
+++ b/ppapi/api/ppb_input_event.idl
@@ -321,9 +321,10 @@
    * IsInputEvent() returns true if the given resource is a valid input event
    * resource.
    *
-   * @param[in] resource A <code>PP_Resource</code>.
+   * @param[in] resource A <code>PP_Resource</code> corresponding to a generic
+   * resource.
    * 
-   * @return True if the given resource is a valid input event
+   * @return <code>PP_TRUE</code> if the given resource is a valid input event
    * resource.
    */
   PP_Bool IsInputEvent([in] PP_Resource resource);
@@ -332,7 +333,8 @@
    * GetType() returns the type of input event for the given input event
    * resource. 
    *
-   * @param[in] resource A <code>PP_Resource</code> containing the input event.
+   * @param[in] resource A <code>PP_Resource</code> corresponding to an input
+   * event.
    *
    * @return A <code>PP_InputEvent_Type</code> if its a valid input event or 
    * <code>PP_INPUTEVENT_TYPE_UNDEFINED</code> if the resource is invalid.
@@ -345,7 +347,7 @@
    * some overhead. Use this value to compare the times the user generated two
    * events without being sensitive to variable processing time.
    *
-   * @param[in] resource A <code>PP_Resource</code> containing the event.
+   * @param[in] resource A <code>PP_Resource</code> corresponding to the event.
    * 
    * @return The return value is in time ticks, which is a monotonically
    * increasing clock not related to the wall clock time. It will not change
@@ -360,7 +362,8 @@
    * at the time of the event. This is a combination of the flags in the
    * <code>PP_InputEvent_Modifier</code> enum.
    *
-   * @param[in] resource A <code>PP_Resource</code> containing the input event.
+   * @param[in] resource A <code>PP_Resource</code> corresponding to an input
+   * event.
    *
    * @return The modifiers associated with the event, or 0 if the given
    * resource is not a valid event resource.
@@ -412,7 +415,7 @@
   /**
    * IsMouseInputEvent() determines if a resource is a mouse event.
    *
-   * @param[in] resource A <code>PP_Resource</code> containing the event.
+   * @param[in] resource A <code>PP_Resource</code> corresponding to an event.
    *
    * @return <code>PP_TRUE</code> if the given resource is a valid mouse input
    * event, otherwise <code>PP_FALSE</code>.
@@ -423,8 +426,8 @@
    * GetButton() returns the mouse button that generated a mouse down or up
    * event.
    *
-   * @param[in] mouse_event A <code>PP_Resource</code> containing the mouse
-   * event.
+   * @param[in] mouse_event A <code>PP_Resource</code> corresponding to a
+   * mouse event.
    *
    * @return The mouse button associated with mouse down and up events. This
    * value will be <code>PP_EVENT_MOUSEBUTTON_NONE</code> for mouse move,
@@ -435,8 +438,8 @@
   /**
    * GetPosition() returns the pixel location of a mouse input event.
    *
-   * @param[in] mouse_event A <code>PP_Resource</code> containing the mouse
-   * event.
+   * @param[in] mouse_event A <code>PP_Resource</code> corresponding to an
+   * mouse event.
    *
    * @return The point associated with the mouse event, relative to the upper-
    * left of the instance receiving the event. These values can be negative for
@@ -492,7 +495,8 @@
   /**
    * IsWheelInputEvent() determines if a resource is a wheel event.
    *
-   * @param[in] wheel_event A <code>PP_Resource</code> containing the event.
+   * @param[in] wheel_event A <code>PP_Resource</code> corresponding to an
+   * event.
    *
    * @return <code>PP_TRUE</code> if the given resource is a valid wheel input
    * event.
@@ -515,7 +519,7 @@
    * possible, for example, on some trackpads and newer mice that don't have
    * "clicks".
    *
-   * @param[in] wheel_event A <code>PP_Resource</code> containing the wheel
+   * @param[in] wheel_event A <code>PP_Resource</code> corresponding to a wheel
    * event.
    *
    * @return The vertical and horizontal scroll values. The units are either in
@@ -536,7 +540,7 @@
    * want or pixel values. An example may be cycling between different items in
    * a game.
    *
-   * @param[in] wheel_event A <code>PP_Resource</code> containing the wheel
+   * @param[in] wheel_event A <code>PP_Resource</code> corresponding to a wheel
    * event.
    *
    * @return The number of "clicks" of the scroll wheel. You may receive
@@ -553,7 +557,7 @@
    * GetScrollByPage() indicates if the scroll delta x/y indicates pages or
    * lines to scroll by.
    *
-   * @param[in] wheel_event A <code>PP_Resource</code> containing the wheel
+   * @param[in] wheel_event A <code>PP_Resource</code> corresponding to a wheel
    * event.
    *
    * @return <code>PP_TRUE</code> if the event is a wheel event and the user is
@@ -606,7 +610,7 @@
   /**
    * IsKeyboardInputEvent() determines if a resource is a keyboard event.
    * 
-   * @param[in] resource A <code>PP_Resource</code> containing the event.
+   * @param[in] resource A <code>PP_Resource</code> corresponding to an event.
    *
    * @return <code>PP_TRUE</code> if the given resource is a valid input event.
    */
@@ -616,8 +620,8 @@
    * GetKeyCode() returns the DOM keyCode field for the keyboard event.
    * Chrome populates this with the Windows-style Virtual Key code of the key.
    *
-   * @param[in] key_event A <code>PP_Resource</code> containing the keyboard
-   * event.
+   * @param[in] key_event A <code>PP_Resource</code> corresponding to a
+   * keyboard event.
    *
    * @return The DOM keyCode field for the keyboard event.
    */
@@ -627,7 +631,7 @@
    * GetCharacterText() returns the typed character as a UTF-8 string for the
    * given character event.
    *
-   * @param[in] character_event A <code>PP_Resource</code> containing the
+   * @param[in] character_event A <code>PP_Resource</code> corresponding to a
    * keyboard event.
    *
    * @return A string var representing a single typed character for character
diff --git a/ppapi/api/ppb_instance.idl b/ppapi/api/ppb_instance.idl
index b27170d..b911f58 100644
--- a/ppapi/api/ppb_instance.idl
+++ b/ppapi/api/ppb_instance.idl
@@ -4,7 +4,7 @@
  */
 
 /**
- * This file defines the PPB_Instance interface implemented by the
+ * This file defines the <code>PPB_Instance</code> interface implemented by the
  * browser and containing pointers to functions related to
  * the module instance on a web page.
  */
@@ -45,8 +45,8 @@
    * Binding a device will invalidate that portion of the web page to flush the
    * contents of the new device to the screen.
    *
-   * @param[in] instance A PP_Instance indentifying one instance of a module.
-   * @param[in] device A PP_Resource representing the graphics device.
+   * @param[in] instance A PP_Instance identifying one instance of a module.
+   * @param[in] device A PP_Resource corresponding to a graphics device.
    *
    * @return <code>PP_Bool</code> containing <code>PP_TRUE</code> if bind was
    * successful or <code>PP_FALSE</code> if the device was not the correct
@@ -64,7 +64,7 @@
    * page specifies an iframe to a resource with a MIME type registered by the
    * module.
    *
-   * @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.
    *
    * @return A <code>PP_Bool</code> containing <code>PP_TRUE</code> if the
diff --git a/ppapi/api/ppb_url_loader.idl b/ppapi/api/ppb_url_loader.idl
index 1b16f8f..d6e9d42 100644
--- a/ppapi/api/ppb_url_loader.idl
+++ b/ppapi/api/ppb_url_loader.idl
@@ -38,7 +38,7 @@
    * any UI dialogs that need to be shown to the user can be positioned
    * relative to the window containing the instance.
    *
-   * @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.
    *
    * @return A <code>PP_Resource</code> corresponding to a URLLoader if
diff --git a/ppapi/api/ppb_url_request_info.idl b/ppapi/api/ppb_url_request_info.idl
index 648f4a9..5a14c42 100644
--- a/ppapi/api/ppb_url_request_info.idl
+++ b/ppapi/api/ppb_url_request_info.idl
@@ -153,7 +153,7 @@
   /**
    * Create() creates a new <code>URLRequestInfo</code> object.
    *
-   * @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.
    *
    * @return A <code>PP_Resource</code> identifying the
@@ -219,7 +219,7 @@
    *
    * @param[in] request A <code>PP_Resource</code> corresponding to a
    * <code>URLRequestInfo</code>.
-   * @param[in] file_ref A <code>PP_Resource</code> containing the file
+   * @param[in] file_ref A <code>PP_Resource</code> corresponding to a file
    * reference.
    * @param[in] start_offset An optional starting point offset within the
    * file.
diff --git a/ppapi/api/ppp_instance.idl b/ppapi/api/ppp_instance.idl
index 600dcf1..0ee4c74 100644
--- a/ppapi/api/ppp_instance.idl
+++ b/ppapi/api/ppp_instance.idl
@@ -39,7 +39,7 @@
    * If this function reports a failure (by returning <code>PP_FALSE</code>),
    * the instance will be deleted.
    *
-   * @param[in] instance A new <code>PP_Instance</code> indentifying one
+   * @param[in] instance A new <code>PP_Instance</code> identifying one
    * instance of a module. This is an opaque handle.
    *
    * @param[in] argc The number of arguments contained in <code>argn</code>
@@ -60,7 +60,7 @@
    * failure.
    */
   PP_Bool DidCreate(
-      /* A PP_Instance indentifying one instance of a module. */
+      /* A PP_Instance identifying one instance of a module. */
       [in] PP_Instance instance,
       /* The number of arguments contained in argn and argv. */
       [in] uint32_t argc,
@@ -102,11 +102,11 @@
    * instances are being deleted, and no cleanup functions will be called.
    * The module will just be unloaded and the process terminated.
    *
-   * @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.
    */
   void DidDestroy(
-      /* A PP_Instance indentifying one instance of a module. */
+      /* A PP_Instance identifying one instance of a module. */
       [in] PP_Instance instance);
 
   /**
@@ -120,7 +120,7 @@
    * the size doesn't change, so you should always check that the size is
    * actually different before doing any reallocations.
    *
-   * @param[in] instance A <code>PP_Instance</code> indentifying the instance
+   * @param[in] instance A <code>PP_Instance</code> identifying the instance
    * that has changed.
    *
    * @param[in] position The location on the page of the instance. This is
@@ -139,11 +139,11 @@
    * the clip when the instance is partially visible. Instead, update the entire
    * region. The time saved doing partial paints is usually not significant and
    * it can create artifacts when scrolling (this notification is sent
-   * asynchronously from scolling so there can be flashes of old content in the
+   * asynchronously from scrolling so there can be flashes of old content in the
    * exposed regions).
    */
   void DidChangeView(
-      /* A PP_Instance indentifying the instance whose view changed. */
+      /* A PP_Instance identifying the instance whose view changed. */
       [in] PP_Instance instance,
       /* The new location on the page of this instance. This is relative to
        * the top left corner of the viewport, which changes as the
@@ -170,13 +170,13 @@
    * to make sure you're returning true from the mouse click in
    * <code>HandleInputEvent</code>.
    *
-   * @param[in] instance A <code>PP_Instance</code> indentifying the instance
+   * @param[in] instance A <code>PP_Instance</code> identifying the instance
    * receiving the input event.
    *
    * @param[in] has_focus Indicates the new focused state of the instance.
    */
   void DidChangeFocus(
-      /* A PP_Instance indentifying one instance of a module. */
+      /* A PP_Instance identifying one instance of a module. */
       [in] PP_Instance instance,
       /* Indicates whether this NaCl module gained or lost event focus. */
       [in] PP_Bool has_focus);
@@ -200,7 +200,7 @@
    * data. In response to this method, the module should call
    * ReadResponseBody() to read the incoming data.
    *
-   * @param[in] instance A <code>PP_Instance</code> indentifying the instance
+   * @param[in] instance A <code>PP_Instance</code> identifying the instance
    * that should do the load.
    *
    * @param[in] url_loader An open <code>PPB_URLLoader</code> instance.
@@ -209,7 +209,7 @@
    * <code>PP_FALSE</code> otherwise.
    */
   PP_Bool HandleDocumentLoad(
-      /* A PP_Instance indentifying one instance of a module. */
+      /* A PP_Instance identifying one instance of a module. */
       [in] PP_Instance instance,
       /* A PP_Resource an open PPB_URLLoader instance. */
       [in] PP_Resource url_loader);
diff --git a/ppapi/c/ppb_core.h b/ppapi/c/ppb_core.h
index e49ca927a..0de8485 100644
--- a/ppapi/c/ppb_core.h
+++ b/ppapi/c/ppb_core.h
@@ -3,7 +3,7 @@
  * found in the LICENSE file.
  */
 
-/* From ppb_core.idl modified Tue Jul 19 13:37:04 2011. */
+/* From ppb_core.idl modified Tue Aug 23 11:13:37 2011. */
 
 #ifndef PPAPI_C_PPB_CORE_H_
 #define PPAPI_C_PPB_CORE_H_
@@ -40,13 +40,15 @@
    *
    * AddRefResource() adds a reference to a resource.
    *
-   * @param[in] config A <code>PP_Resource</code> containing the resource.
+   * @param[in] config A <code>PP_Resource</code> corresponding to a
+   * resource.
    */
   void (*AddRefResource)(PP_Resource resource);
   /**
    * ReleaseResource() removes a reference from a resource.
    *
-   * @param[in] config A <code>PP_Resource</code> containing the resource.
+   * @param[in] config A <code>PP_Resource</code> corresponding to a
+   * resource.
    */
   void (*ReleaseResource)(PP_Resource resource);
   /**
diff --git a/ppapi/c/ppb_file_io.h b/ppapi/c/ppb_file_io.h
index 7ed28d292..333984b 100644
--- a/ppapi/c/ppb_file_io.h
+++ b/ppapi/c/ppb_file_io.h
@@ -3,7 +3,7 @@
  * found in the LICENSE file.
  */
 
-/* From ppb_file_io.idl modified Wed Aug 24 20:51:24 2011. */
+/* From ppb_file_io.idl modified Mon Aug 29 10:11:34 2011. */
 
 #ifndef PPAPI_C_PPB_FILE_IO_H_
 #define PPAPI_C_PPB_FILE_IO_H_
@@ -77,7 +77,7 @@
   /**
    * Create() creates a new FileIO object.
    *
-   * @param[in] instance A <code>PP_Instance</code> indentifying the instance
+   * @param[in] instance A <code>PP_Instance</code> identifying the instance
    * with the file.
    *
    * @return A <code>PP_Resource</code> corresponding to a FileIO if
diff --git a/ppapi/c/ppb_file_system.h b/ppapi/c/ppb_file_system.h
index 47b9178..82beea38 100644
--- a/ppapi/c/ppb_file_system.h
+++ b/ppapi/c/ppb_file_system.h
@@ -3,7 +3,7 @@
  * found in the LICENSE file.
  */
 
-/* From ppb_file_system.idl modified Wed Aug 24 20:52:19 2011. */
+/* From ppb_file_system.idl modified Mon Aug 29 10:11:34 2011. */
 
 #ifndef PPAPI_C_PPB_FILE_SYSTEM_H_
 #define PPAPI_C_PPB_FILE_SYSTEM_H_
@@ -36,7 +36,7 @@
 struct PPB_FileSystem {
   /** Create() creates a file system object of the given type.
    *
-   * @param[in] instance A <code>PP_Instance</code> indentifying the instance
+   * @param[in] instance A <code>PP_Instance</code> identifying the instance
    * with the file.
    * @param[in] type A file system type as defined by
    * <code>PP_FileSystemType</code> enum.
diff --git a/ppapi/c/ppb_image_data.h b/ppapi/c/ppb_image_data.h
index 8cb1f5f9..e8b42c4 100644
--- a/ppapi/c/ppb_image_data.h
+++ b/ppapi/c/ppb_image_data.h
@@ -3,7 +3,7 @@
  * found in the LICENSE file.
  */
 
-/* From ppb_image_data.idl modified Wed Aug 24 20:50:01 2011. */
+/* From ppb_image_data.idl modified Mon Aug 29 10:11:34 2011. */
 
 #ifndef PPAPI_C_PPB_IMAGE_DATA_H_
 #define PPAPI_C_PPB_IMAGE_DATA_H_
@@ -132,7 +132,7 @@
    * memory, but may contain data from a previous image produced by the same
    * module if the bitmap was cached and re-used.
    *
-   * @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] format The desired image data format.
    * @param[in] size A pointer to a <code>PP_Size</code> containing the image
@@ -144,7 +144,7 @@
    * current contents of the bitmap will be undefined, and the module should
    * be sure to set all the pixels.
    *
-   * @return A <code>PP_Resource</code> with a nonzero ID on succes or zero on
+   * @return A <code>PP_Resource</code> with a nonzero ID on success or zero on
    * failure. Failure means the instance, image size, or format was invalid.
    */
   PP_Resource (*Create)(PP_Instance instance,
diff --git a/ppapi/c/ppb_input_event.h b/ppapi/c/ppb_input_event.h
index 2ad6741e..e9c8492 100644
--- a/ppapi/c/ppb_input_event.h
+++ b/ppapi/c/ppb_input_event.h
@@ -3,7 +3,7 @@
  * found in the LICENSE file.
  */
 
-/* From ppb_input_event.idl modified Wed Aug 17 11:16:34 2011. */
+/* From ppb_input_event.idl modified Wed Aug 24 09:43:38 2011. */
 
 #ifndef PPAPI_C_PPB_INPUT_EVENT_H_
 #define PPAPI_C_PPB_INPUT_EVENT_H_
@@ -336,9 +336,10 @@
    * IsInputEvent() returns true if the given resource is a valid input event
    * resource.
    *
-   * @param[in] resource A <code>PP_Resource</code>.
+   * @param[in] resource A <code>PP_Resource</code> corresponding to a generic
+   * resource.
    *
-   * @return True if the given resource is a valid input event
+   * @return <code>PP_TRUE</code> if the given resource is a valid input event
    * resource.
    */
   PP_Bool (*IsInputEvent)(PP_Resource resource);
@@ -346,7 +347,8 @@
    * GetType() returns the type of input event for the given input event
    * resource.
    *
-   * @param[in] resource A <code>PP_Resource</code> containing the input event.
+   * @param[in] resource A <code>PP_Resource</code> corresponding to an input
+   * event.
    *
    * @return A <code>PP_InputEvent_Type</code> if its a valid input event or
    * <code>PP_INPUTEVENT_TYPE_UNDEFINED</code> if the resource is invalid.
@@ -358,7 +360,7 @@
    * some overhead. Use this value to compare the times the user generated two
    * events without being sensitive to variable processing time.
    *
-   * @param[in] resource A <code>PP_Resource</code> containing the event.
+   * @param[in] resource A <code>PP_Resource</code> corresponding to the event.
    *
    * @return The return value is in time ticks, which is a monotonically
    * increasing clock not related to the wall clock time. It will not change
@@ -372,7 +374,8 @@
    * at the time of the event. This is a combination of the flags in the
    * <code>PP_InputEvent_Modifier</code> enum.
    *
-   * @param[in] resource A <code>PP_Resource</code> containing the input event.
+   * @param[in] resource A <code>PP_Resource</code> corresponding to an input
+   * event.
    *
    * @return The modifiers associated with the event, or 0 if the given
    * resource is not a valid event resource.
@@ -422,7 +425,7 @@
   /**
    * IsMouseInputEvent() determines if a resource is a mouse event.
    *
-   * @param[in] resource A <code>PP_Resource</code> containing the event.
+   * @param[in] resource A <code>PP_Resource</code> corresponding to an event.
    *
    * @return <code>PP_TRUE</code> if the given resource is a valid mouse input
    * event, otherwise <code>PP_FALSE</code>.
@@ -432,8 +435,8 @@
    * GetButton() returns the mouse button that generated a mouse down or up
    * event.
    *
-   * @param[in] mouse_event A <code>PP_Resource</code> containing the mouse
-   * event.
+   * @param[in] mouse_event A <code>PP_Resource</code> corresponding to a
+   * mouse event.
    *
    * @return The mouse button associated with mouse down and up events. This
    * value will be <code>PP_EVENT_MOUSEBUTTON_NONE</code> for mouse move,
@@ -443,8 +446,8 @@
   /**
    * GetPosition() returns the pixel location of a mouse input event.
    *
-   * @param[in] mouse_event A <code>PP_Resource</code> containing the mouse
-   * event.
+   * @param[in] mouse_event A <code>PP_Resource</code> corresponding to an
+   * mouse event.
    *
    * @return The point associated with the mouse event, relative to the upper-
    * left of the instance receiving the event. These values can be negative for
@@ -496,7 +499,8 @@
   /**
    * IsWheelInputEvent() determines if a resource is a wheel event.
    *
-   * @param[in] wheel_event A <code>PP_Resource</code> containing the event.
+   * @param[in] wheel_event A <code>PP_Resource</code> corresponding to an
+   * event.
    *
    * @return <code>PP_TRUE</code> if the given resource is a valid wheel input
    * event.
@@ -518,7 +522,7 @@
    * possible, for example, on some trackpads and newer mice that don't have
    * "clicks".
    *
-   * @param[in] wheel_event A <code>PP_Resource</code> containing the wheel
+   * @param[in] wheel_event A <code>PP_Resource</code> corresponding to a wheel
    * event.
    *
    * @return The vertical and horizontal scroll values. The units are either in
@@ -538,7 +542,7 @@
    * want or pixel values. An example may be cycling between different items in
    * a game.
    *
-   * @param[in] wheel_event A <code>PP_Resource</code> containing the wheel
+   * @param[in] wheel_event A <code>PP_Resource</code> corresponding to a wheel
    * event.
    *
    * @return The number of "clicks" of the scroll wheel. You may receive
@@ -554,7 +558,7 @@
    * GetScrollByPage() indicates if the scroll delta x/y indicates pages or
    * lines to scroll by.
    *
-   * @param[in] wheel_event A <code>PP_Resource</code> containing the wheel
+   * @param[in] wheel_event A <code>PP_Resource</code> corresponding to a wheel
    * event.
    *
    * @return <code>PP_TRUE</code> if the event is a wheel event and the user is
@@ -605,7 +609,7 @@
   /**
    * IsKeyboardInputEvent() determines if a resource is a keyboard event.
    *
-   * @param[in] resource A <code>PP_Resource</code> containing the event.
+   * @param[in] resource A <code>PP_Resource</code> corresponding to an event.
    *
    * @return <code>PP_TRUE</code> if the given resource is a valid input event.
    */
@@ -614,8 +618,8 @@
    * GetKeyCode() returns the DOM keyCode field for the keyboard event.
    * Chrome populates this with the Windows-style Virtual Key code of the key.
    *
-   * @param[in] key_event A <code>PP_Resource</code> containing the keyboard
-   * event.
+   * @param[in] key_event A <code>PP_Resource</code> corresponding to a
+   * keyboard event.
    *
    * @return The DOM keyCode field for the keyboard event.
    */
@@ -624,7 +628,7 @@
    * GetCharacterText() returns the typed character as a UTF-8 string for the
    * given character event.
    *
-   * @param[in] character_event A <code>PP_Resource</code> containing the
+   * @param[in] character_event A <code>PP_Resource</code> corresponding to a
    * keyboard event.
    *
    * @return A string var representing a single typed character for character
diff --git a/ppapi/c/ppb_instance.h b/ppapi/c/ppb_instance.h
index 31bf27e..6ad4687 100644
--- a/ppapi/c/ppb_instance.h
+++ b/ppapi/c/ppb_instance.h
@@ -3,7 +3,7 @@
  * found in the LICENSE file.
  */
 
-/* From ppb_instance.idl modified Mon Aug 15 11:01:06 2011. */
+/* From ppb_instance.idl modified Tue Aug 23 11:25:50 2011. */
 
 #ifndef PPAPI_C_PPB_INSTANCE_H_
 #define PPAPI_C_PPB_INSTANCE_H_
@@ -21,7 +21,7 @@
 
 /**
  * @file
- * This file defines the PPB_Instance interface implemented by the
+ * This file defines the <code>PPB_Instance</code> interface implemented by the
  * browser and containing pointers to functions related to
  * the module instance on a web page.
  */
@@ -54,8 +54,8 @@
    * Binding a device will invalidate that portion of the web page to flush the
    * contents of the new device to the screen.
    *
-   * @param[in] instance A PP_Instance indentifying one instance of a module.
-   * @param[in] device A PP_Resource representing the graphics device.
+   * @param[in] instance A PP_Instance identifying one instance of a module.
+   * @param[in] device A PP_Resource corresponding to a graphics device.
    *
    * @return <code>PP_Bool</code> containing <code>PP_TRUE</code> if bind was
    * successful or <code>PP_FALSE</code> if the device was not the correct
@@ -70,7 +70,7 @@
    * page specifies an iframe to a resource with a MIME type registered by the
    * module.
    *
-   * @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.
    *
    * @return A <code>PP_Bool</code> containing <code>PP_TRUE</code> if the
diff --git a/ppapi/c/ppb_url_loader.h b/ppapi/c/ppb_url_loader.h
index bdef75e..1ee7080aa 100644
--- a/ppapi/c/ppb_url_loader.h
+++ b/ppapi/c/ppb_url_loader.h
@@ -3,7 +3,7 @@
  * found in the LICENSE file.
  */
 
-/* From ppb_url_loader.idl modified Wed Aug 24 20:48:35 2011. */
+/* From ppb_url_loader.idl modified Mon Aug 29 10:11:34 2011. */
 
 #ifndef PPAPI_C_PPB_URL_LOADER_H_
 #define PPAPI_C_PPB_URL_LOADER_H_
@@ -55,7 +55,7 @@
    * any UI dialogs that need to be shown to the user can be positioned
    * relative to the window containing the instance.
    *
-   * @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.
    *
    * @return A <code>PP_Resource</code> corresponding to a URLLoader if
diff --git a/ppapi/c/ppb_url_request_info.h b/ppapi/c/ppb_url_request_info.h
index e575085..529a549 100644
--- a/ppapi/c/ppb_url_request_info.h
+++ b/ppapi/c/ppb_url_request_info.h
@@ -3,7 +3,7 @@
  * found in the LICENSE file.
  */
 
-/* From ppb_url_request_info.idl modified Wed Aug 24 20:53:00 2011. */
+/* From ppb_url_request_info.idl modified Mon Aug 29 10:11:34 2011. */
 
 #ifndef PPAPI_C_PPB_URL_REQUEST_INFO_H_
 #define PPAPI_C_PPB_URL_REQUEST_INFO_H_
@@ -166,7 +166,7 @@
   /**
    * Create() creates a new <code>URLRequestInfo</code> object.
    *
-   * @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.
    *
    * @return A <code>PP_Resource</code> identifying the
@@ -224,7 +224,7 @@
    *
    * @param[in] request A <code>PP_Resource</code> corresponding to a
    * <code>URLRequestInfo</code>.
-   * @param[in] file_ref A <code>PP_Resource</code> containing the file
+   * @param[in] file_ref A <code>PP_Resource</code> corresponding to a file
    * reference.
    * @param[in] start_offset An optional starting point offset within the
    * file.
diff --git a/ppapi/c/ppp_instance.h b/ppapi/c/ppp_instance.h
index 5a907bc..12ab8c0 100644
--- a/ppapi/c/ppp_instance.h
+++ b/ppapi/c/ppp_instance.h
@@ -3,7 +3,7 @@
  * found in the LICENSE file.
  */
 
-/* From ppp_instance.idl modified Mon Aug 15 11:01:06 2011. */
+/* From ppp_instance.idl modified Tue Aug 23 11:29:06 2011. */
 
 #ifndef PPAPI_C_PPP_INSTANCE_H_
 #define PPAPI_C_PPP_INSTANCE_H_
@@ -58,7 +58,7 @@
    * If this function reports a failure (by returning <code>PP_FALSE</code>),
    * the instance will be deleted.
    *
-   * @param[in] instance A new <code>PP_Instance</code> indentifying one
+   * @param[in] instance A new <code>PP_Instance</code> identifying one
    * instance of a module. This is an opaque handle.
    *
    * @param[in] argc The number of arguments contained in <code>argn</code>
@@ -106,7 +106,7 @@
    * instances are being deleted, and no cleanup functions will be called.
    * The module will just be unloaded and the process terminated.
    *
-   * @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.
    */
   void (*DidDestroy)(PP_Instance instance);
@@ -121,7 +121,7 @@
    * the size doesn't change, so you should always check that the size is
    * actually different before doing any reallocations.
    *
-   * @param[in] instance A <code>PP_Instance</code> indentifying the instance
+   * @param[in] instance A <code>PP_Instance</code> identifying the instance
    * that has changed.
    *
    * @param[in] position The location on the page of the instance. This is
@@ -140,7 +140,7 @@
    * the clip when the instance is partially visible. Instead, update the entire
    * region. The time saved doing partial paints is usually not significant and
    * it can create artifacts when scrolling (this notification is sent
-   * asynchronously from scolling so there can be flashes of old content in the
+   * asynchronously from scrolling so there can be flashes of old content in the
    * exposed regions).
    */
   void (*DidChangeView)(PP_Instance instance,
@@ -160,7 +160,7 @@
    * to make sure you're returning true from the mouse click in
    * <code>HandleInputEvent</code>.
    *
-   * @param[in] instance A <code>PP_Instance</code> indentifying the instance
+   * @param[in] instance A <code>PP_Instance</code> identifying the instance
    * receiving the input event.
    *
    * @param[in] has_focus Indicates the new focused state of the instance.
@@ -185,7 +185,7 @@
    * data. In response to this method, the module should call
    * ReadResponseBody() to read the incoming data.
    *
-   * @param[in] instance A <code>PP_Instance</code> indentifying the instance
+   * @param[in] instance A <code>PP_Instance</code> identifying the instance
    * that should do the load.
    *
    * @param[in] url_loader An open <code>PPB_URLLoader</code> instance.
diff --git a/ppapi/cpp/audio.h b/ppapi/cpp/audio.h
index 48bb40ef..e42a8e3f 100644
--- a/ppapi/cpp/audio.h
+++ b/ppapi/cpp/audio.h
@@ -38,7 +38,7 @@
   /// the device configuration and is specified in the <code>AudioConfig</code>
   /// documentation.
   ///
-  /// @param[in] instance A pointer to an <code>Instance</code> indentifying one
+  /// @param[in] instance A pointer to an <code>Instance</code> identifying one
   /// instance of a module.
   /// @param[in] config An <code>AudioConfig</code> containing the audio config
   /// resource.
diff --git a/ppapi/cpp/core.h b/ppapi/cpp/core.h
index 5c3ad77e..35b8655 100644
--- a/ppapi/cpp/core.h
+++ b/ppapi/cpp/core.h
@@ -26,7 +26,8 @@
   /// AddRefResource() increments the reference count for the provided
   /// <code>resource</code>.
   ///
-  /// @param[in] resource A <code>PP_Resource</code> containing the resource.
+  /// @param[in] resource A <code>PP_Resource</code> corresponding to a
+  /// resource.
   void AddRefResource(PP_Resource resource) {
     interface_->AddRefResource(resource);
   }
@@ -35,7 +36,8 @@
   /// <code>resource</code>. The resource will be deallocated if the
   /// reference count reaches zero.
   ///
-  /// @param[in] resource A <code>PP_Resource</code> containing the resource.
+  /// @param[in] resource A <code>PP_Resource</code> corresponding to a
+  /// resource.
   void ReleaseResource(PP_Resource resource) {
     interface_->ReleaseResource(resource);
   }
diff --git a/ppapi/cpp/file_system.h b/ppapi/cpp/file_system.h
index db62bd7..1c213d6 100644
--- a/ppapi/cpp/file_system.h
+++ b/ppapi/cpp/file_system.h
@@ -29,7 +29,7 @@
 
   /// This constructor creates a file system object of the given type.
   ///
-  /// @param[in] instance A <code>Instance</code> indentifying the instance
+  /// @param[in] instance A <code>Instance</code> identifying the instance
   /// with the file.
   /// @param[in] type A file system type as defined by
   /// <code>PP_FileSystemType</code> enum.
diff --git a/ppapi/cpp/image_data.h b/ppapi/cpp/image_data.h
index e4159c0..e8bed28 100644
--- a/ppapi/cpp/image_data.h
+++ b/ppapi/cpp/image_data.h
@@ -29,8 +29,8 @@
   /// reference count of the underlying Image resource.
   struct PassRef {};
 
-  /// A constructor used when you have received a PP_Resource as a return
-  /// value that has already been reference counted.
+  /// A constructor used when you have received a <code>PP_Resource</code> as a
+  /// return value that has already been reference counted.
   ///
   /// @param[in] resource A PP_Resource corresponding to image data.
   ImageData(PassRef, PP_Resource resource);
@@ -46,7 +46,7 @@
   /// with the provided parameters. The resulting object will be is_null() if
   /// the allocation failed.
   ///
-  /// @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] format A PP_ImageDataFormat containing desired image format.
diff --git a/ppapi/cpp/resource.h b/ppapi/cpp/resource.h
index 584a82c..e6bd074 100644
--- a/ppapi/cpp/resource.h
+++ b/ppapi/cpp/resource.h
@@ -56,7 +56,8 @@
   /// A constructor used when a <code>PP_Resource</code> is provided as a
   /// return value whose reference count we need to increment.
   ///
-  /// @param[in] resource A <code>PP_Resource</code>.
+  /// @param[in] resource A <code>PP_Resource</code> corresponding to a
+  /// resource.
   explicit Resource(PP_Resource resource);
 
   /// PassRefFromConstructor is called by derived class' constructors to
@@ -71,7 +72,8 @@
   /// since it was returned by the browser, already had its reference count
   /// increased).
   ///
-  /// @param[in] resource A PP_Resource.
+  /// @param[in] resource A <code>PP_Resource</code> corresponding to a
+  /// resource.
   void PassRefFromConstructor(PP_Resource resource);
 
  private:
diff --git a/ppapi/cpp/url_response_info.h b/ppapi/cpp/url_response_info.h
index 0a56eeb1..aee4ca1 100644
--- a/ppapi/cpp/url_response_info.h
+++ b/ppapi/cpp/url_response_info.h
@@ -29,7 +29,8 @@
   /// A constructor used when you have received a <code>PP_Resource</code> as a
   /// return value that has already been reference counted.
   ///
-  /// @param[in] resource A <code>PP_Resource</code>.
+  /// @param[in] resource A <code>PP_Resource</code> corresponding to a
+  /// resource.
   URLResponseInfo(PassRef, PP_Resource resource);
 
   /// The copy constructor for <code>URLResponseInfo</code>.