diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-01-03 18:32:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-01-03 19:35:08 +0300 |
commit | 6e09393c9d4a2f36c582ff97c0f5d5263757cbcc (patch) | |
tree | 4a183d5255462594bca9888f4f598800f6125805 /src/utils | |
parent | 829c8fb2476f763f0d0a1f4ca792073eb953814e (diff) | |
download | plus-6e09393c9d4a2f36c582ff97c0f5d5263757cbcc.tar.gz plus-6e09393c9d4a2f36c582ff97c0f5d5263757cbcc.tar.bz2 plus-6e09393c9d4a2f36c582ff97c0f5d5263757cbcc.tar.xz plus-6e09393c9d4a2f36c582ff97c0f5d5263757cbcc.zip |
Fix some doxygen issues.
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/copynpaste.h | 2 | ||||
-rw-r--r-- | src/utils/physfsrwops.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/utils/copynpaste.h b/src/utils/copynpaste.h index c25e6c5d1..73e086160 100644 --- a/src/utils/copynpaste.h +++ b/src/utils/copynpaste.h @@ -28,7 +28,7 @@ /** * Attempts to retrieve text from the clipboard buffer and inserts it in - * \a text at position \pos. The characters are encoded in utf-8. + * \a text at position. The characters are encoded in utf-8. * * Implemented for Windows, X11 and Mac OS X. * diff --git a/src/utils/physfsrwops.h b/src/utils/physfsrwops.h index 7b3fa51ef..7874a8920 100644 --- a/src/utils/physfsrwops.h +++ b/src/utils/physfsrwops.h @@ -46,7 +46,7 @@ _SDL_stdinc_h * RWops is closed. PhysicsFS should be configured to your liking before * opening files through this method. * - * @param filename File to open in platform-independent notation. + * @param fname File to open in platform-independent notation. * @return A valid SDL_RWops structure on success, NULL on error. Specifics * of the error can be gleaned from PHYSFS_getLastError(). */ @@ -58,7 +58,7 @@ SDL_RWops *PHYSFSRWOPS_openRead(const char *const fname) A_WARN_UNUSED; * RWops is closed. PhysicsFS should be configured to your liking before * opening files through this method. * - * @param filename File to open in platform-independent notation. + * @param fname File to open in platform-independent notation. * @return A valid SDL_RWops structure on success, NULL on error. Specifics * of the error can be gleaned from PHYSFS_getLastError(). */ @@ -70,7 +70,7 @@ SDL_RWops *PHYSFSRWOPS_openWrite(const char *const fname) A_WARN_UNUSED; * RWops is closed. PhysicsFS should be configured to your liking before * opening files through this method. * - * @param filename File to open in platform-independent notation. + * @param fname File to open in platform-independent notation. * @return A valid SDL_RWops structure on success, NULL on error. Specifics * of the error can be gleaned from PHYSFS_getLastError(). */ @@ -82,7 +82,7 @@ SDL_RWops *PHYSFSRWOPS_openAppend(const char *const fname) A_WARN_UNUSED; * the RWops. The actual PhysicsFS handle will be destroyed when the * RWops is closed. * - * @param handle a valid PhysicsFS file handle. + * @param handle a valid PhysicsFS file handle. * @return A valid SDL_RWops structure on success, NULL on error. Specifics * of the error can be gleaned from PHYSFS_getLastError(). */ |