Fix various typos (docs/build scripts/tests)

This commit is contained in:
luzpaz
2023-07-03 15:29:42 +00:00
committed by Sam Lantinga
parent c0bd18f023
commit 65e1d568ef
13 changed files with 18 additions and 18 deletions

View File

@@ -697,9 +697,9 @@ static int rect_testIntersectRectParam(void *arg)
intersection = SDL_GetRectIntersection((SDL_Rect *)NULL, &rectB, &result);
SDLTest_AssertCheck(intersection == SDL_FALSE, "Check that function returns SDL_FALSE when 1st parameter is NULL");
intersection = SDL_GetRectIntersection(&rectA, (SDL_Rect *)NULL, &result);
SDLTest_AssertCheck(intersection == SDL_FALSE, "Check that function returns SDL_FALSE when 2st parameter is NULL");
SDLTest_AssertCheck(intersection == SDL_FALSE, "Check that function returns SDL_FALSE when 2nd parameter is NULL");
intersection = SDL_GetRectIntersection(&rectA, &rectB, (SDL_Rect *)NULL);
SDLTest_AssertCheck(intersection == SDL_FALSE, "Check that function returns SDL_FALSE when 3st parameter is NULL");
SDLTest_AssertCheck(intersection == SDL_FALSE, "Check that function returns SDL_FALSE when 3rd parameter is NULL");
intersection = SDL_GetRectIntersection((SDL_Rect *)NULL, (SDL_Rect *)NULL, &result);
SDLTest_AssertCheck(intersection == SDL_FALSE, "Check that function returns SDL_FALSE when 1st and 2nd parameters are NULL");
intersection = SDL_GetRectIntersection((SDL_Rect *)NULL, &rectB, (SDL_Rect *)NULL);
@@ -945,7 +945,7 @@ static int rect_testHasIntersectionParam(void *arg)
intersection = SDL_HasRectIntersection((SDL_Rect *)NULL, &rectB);
SDLTest_AssertCheck(intersection == SDL_FALSE, "Check that function returns SDL_FALSE when 1st parameter is NULL");
intersection = SDL_HasRectIntersection(&rectA, (SDL_Rect *)NULL);
SDLTest_AssertCheck(intersection == SDL_FALSE, "Check that function returns SDL_FALSE when 2st parameter is NULL");
SDLTest_AssertCheck(intersection == SDL_FALSE, "Check that function returns SDL_FALSE when 2nd parameter is NULL");
intersection = SDL_HasRectIntersection((SDL_Rect *)NULL, (SDL_Rect *)NULL);
SDLTest_AssertCheck(intersection == SDL_FALSE, "Check that function returns SDL_FALSE when all parameters are NULL");

View File

@@ -3,7 +3,7 @@
* Adapted/rewritten for test lib by Andreas Schiffler
*/
/* Supress C4996 VS compiler warnings for unlink() */
/* Suppress C4996 VS compiler warnings for unlink() */
#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE)
#define _CRT_SECURE_NO_DEPRECATE
#endif

View File

@@ -1625,7 +1625,7 @@ cleanup:
/**
* \brief Tests the functionality of the SDL_WINDOWPOS_CENTERED_DISPLAY along with SDL_WINDOW_FULLSCREEN.
*
* Espeically useful when run on a multi-monitor system with different DPI scales per monitor,
* Especially useful when run on a multi-monitor system with different DPI scales per monitor,
* to test that the window size is maintained when moving between monitors.
*/
static int video_setWindowCenteredOnDisplay(void *arg)

View File

@@ -10,7 +10,7 @@
freely.
*/
/* sanity tests on SDL_rwops.c (usefull for alternative implementations of stdio rwops) */
/* sanity tests on SDL_rwops.c (useful for alternative implementations of stdio rwops) */
/* quiet windows compiler warnings */
#if defined(_MSC_VER) && !defined(_CRT_NONSTDC_NO_WARNINGS)

View File

@@ -128,7 +128,7 @@ int main(int argc, char *argv[])
SDL_CloseJoystick(joystick);
joystick = NULL;
} else {
SDL_Log("Unknown joystick diconnected\n");
SDL_Log("Unknown joystick disconnected\n");
}
break;
case SDL_EVENT_JOYSTICK_AXIS_MOTION:

View File

@@ -771,9 +771,9 @@ int main(int argc, char *argv[])
SDL_strlcat(text, event.text.text, sizeof(text));
}
SDL_Log("text inputed: %s\n", text);
SDL_Log("text inputted: %s\n", text);
/* After text inputed, we can clear up markedText because it */
/* After text inputted, we can clear up markedText because it */
/* is committed */
markedText[0] = 0;
Redraw();

View File

@@ -381,7 +381,7 @@ static int Test64Bit(SDL_bool verbose)
}
}
if (verbose && (failed == 0)) {
SDL_Log("All 64bit instrinsic tests passed\n");
SDL_Log("All 64bit intrinsic tests passed\n");
}
return failed ? 1 : 0;
}