diff options
author | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-16 19:22:55 +0000 |
---|---|---|
committer | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-16 19:22:55 +0000 |
commit | 0a7683c3dea46e5f7242d97f4e2d17e38bee3777 (patch) | |
tree | 55a245423e249070f3a269c897a162bf2e0a09e1 /ppapi/c/ppb_file_io.h | |
parent | d76bbe9ad18f01d5731d17ec73336709a224fdf1 (diff) | |
download | chromium_src-0a7683c3dea46e5f7242d97f4e2d17e38bee3777.zip chromium_src-0a7683c3dea46e5f7242d97f4e2d17e38bee3777.tar.gz chromium_src-0a7683c3dea46e5f7242d97f4e2d17e38bee3777.tar.bz2 |
Fixed grammar error and fixed problem with TODO items (changed to 'C' style comment so Doxygen strips them out). Tried // but it caused the generator to not write the file.
Review URL: http://codereview.chromium.org/9235017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@122332 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c/ppb_file_io.h')
-rw-r--r-- | ppapi/c/ppb_file_io.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ppapi/c/ppb_file_io.h b/ppapi/c/ppb_file_io.h index 51203dd..4b9db95 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 Thu Jan 12 16:13:13 2012. */ +/* From ppb_file_io.idl modified Wed Feb 15 15:55:56 2012. */ #ifndef PPAPI_C_PPB_FILE_IO_H_ #define PPAPI_C_PPB_FILE_IO_H_ @@ -170,7 +170,7 @@ struct PPB_FileIO_1_0 { * @param[in] callback A <code>PP_CompletionCallback</code> to be called upon * completion of Read(). * - * @return An The number of bytes read an error code from + * @return The number of bytes read or an error code from * <code>pp_errors.h</code>. If the return value is 0, then end-of-file was * reached. It is valid to call Read() multiple times with a completion * callback to queue up parallel reads from the file, but pending reads @@ -194,7 +194,7 @@ struct PPB_FileIO_1_0 { * @param[in] callback A <code>PP_CompletionCallback</code> to be called upon * completion of Write(). * - * @return An The number of bytes written or an error code from + * @return The number of bytes written or an error code from * <code>pp_errors.h</code>. If the return value is 0, then end-of-file was * reached. It is valid to call Write() multiple times with a completion * callback to queue up parallel writes to the file, but pending writes |