From 42031c71a2b3a6301b748dca5c289862efea7886 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 14 Aug 2010 12:28:43 -0700 Subject: [PATCH] Fixed documentation error --- include/SDL_events.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/SDL_events.h b/include/SDL_events.h index b65c0046f..dece452e7 100644 --- a/include/SDL_events.h +++ b/include/SDL_events.h @@ -382,12 +382,12 @@ typedef enum * the back of the event queue. * * If \c action is ::SDL_PEEKEVENT, up to \c numevents events at the front - * of the event queue, matching \c mask, will be returned and will not - * be removed from the queue. + * of the event queue, within the specified minimum and maximum type, + * will be returned and will not be removed from the queue. * * If \c action is ::SDL_GETEVENT, up to \c numevents events at the front - * of the event queue, matching \c mask, will be returned and will be - * removed from the queue. + * of the event queue, within the specified minimum and maximum type, + * will be returned and will be removed from the queue. * * \return The number of events actually stored, or -1 if there was an error. *