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/physfsrwops.h | |
parent | 829c8fb2476f763f0d0a1f4ca792073eb953814e (diff) | |
download | mv-6e09393c9d4a2f36c582ff97c0f5d5263757cbcc.tar.gz mv-6e09393c9d4a2f36c582ff97c0f5d5263757cbcc.tar.bz2 mv-6e09393c9d4a2f36c582ff97c0f5d5263757cbcc.tar.xz mv-6e09393c9d4a2f36c582ff97c0f5d5263757cbcc.zip |
Fix some doxygen issues.
Diffstat (limited to 'src/utils/physfsrwops.h')
-rw-r--r-- | src/utils/physfsrwops.h | 8 |
1 files changed, 4 insertions, 4 deletions
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(). */ |