Fixed some typos in the headers.
1.1 --- a/include/SDL_haptic.h Fri Aug 09 23:58:33 2013 -0700
1.2 +++ b/include/SDL_haptic.h Sat Aug 10 13:20:45 2013 -0400
1.3 @@ -926,7 +926,7 @@
1.4 *
1.5 * Example:
1.6 * \code
1.7 - * if (SDL_HapticQueryEffects(haptic) & SDL_HAPTIC_CONSTANT) {
1.8 + * if (SDL_HapticQuery(haptic) & SDL_HAPTIC_CONSTANT) {
1.9 * printf("We have constant haptic effect!");
1.10 * }
1.11 * \endcode
1.12 @@ -1132,7 +1132,7 @@
1.13 extern DECLSPEC int SDLCALL SDL_HapticStopAll(SDL_Haptic * haptic);
1.14
1.15 /**
1.16 - * \brief Checks to see if rumble is supported on a haptic device..
1.17 + * \brief Checks to see if rumble is supported on a haptic device.
1.18 *
1.19 * \param haptic Haptic device to check to see if it supports rumble.
1.20 * \return SDL_TRUE if effect is supported, SDL_FALSE if it isn't or -1 on error.