From 24097af6ac6b9a40b257a7f24f74349bf206e826 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 10 Aug 2013 13:20:45 -0400 Subject: [PATCH] Fixed some typos in the headers. --- include/SDL_haptic.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/SDL_haptic.h b/include/SDL_haptic.h index 8bc726d41..1ea791428 100644 --- a/include/SDL_haptic.h +++ b/include/SDL_haptic.h @@ -926,7 +926,7 @@ extern DECLSPEC int SDLCALL SDL_HapticNumEffectsPlaying(SDL_Haptic * haptic); * * Example: * \code - * if (SDL_HapticQueryEffects(haptic) & SDL_HAPTIC_CONSTANT) { + * if (SDL_HapticQuery(haptic) & SDL_HAPTIC_CONSTANT) { * printf("We have constant haptic effect!"); * } * \endcode @@ -1132,7 +1132,7 @@ extern DECLSPEC int SDLCALL SDL_HapticUnpause(SDL_Haptic * haptic); extern DECLSPEC int SDLCALL SDL_HapticStopAll(SDL_Haptic * haptic); /** - * \brief Checks to see if rumble is supported on a haptic device.. + * \brief Checks to see if rumble is supported on a haptic device. * * \param haptic Haptic device to check to see if it supports rumble. * \return SDL_TRUE if effect is supported, SDL_FALSE if it isn't or -1 on error.