From fd530d029fdc827887b401a5444730e45e7cf849 Mon Sep 17 00:00:00 2001 From: Petar Popovic Date: Wed, 23 Oct 2024 05:35:58 +0200 Subject: [PATCH] Fixed typo in SDL_clipboard.h --- include/SDL3/SDL_clipboard.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/SDL3/SDL_clipboard.h b/include/SDL3/SDL_clipboard.h index 94d8c0edf8..2900be26e6 100644 --- a/include/SDL3/SDL_clipboard.h +++ b/include/SDL3/SDL_clipboard.h @@ -59,7 +59,7 @@ extern SDL_DECLSPEC bool SDLCALL SDL_SetClipboardText(const char *text); /** * Get UTF-8 text from the clipboard. * - * This functions returns empty string if there was not enough memory left for + * This functions returns an empty string if there was not enough memory left for * a copy of the clipboard's content. * * \returns the clipboard text on success or an empty string on failure; call @@ -102,7 +102,7 @@ extern SDL_DECLSPEC bool SDLCALL SDL_SetPrimarySelectionText(const char *text); /** * Get UTF-8 text from the primary selection. * - * This functions returns empty string if there was not enough memory left for + * This functions returns an empty string if there was not enough memory left for * a copy of the primary selection's content. * * \returns the primary selection text on success or an empty string on