Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Corrected words in comments of test programs.
  • Loading branch information
philippwiesemann committed Jul 27, 2013
1 parent 2f5854b commit 15ebd0f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/testatomic.c
Expand Up @@ -91,7 +91,7 @@ void RunBasicTest()
/* Tests semantics of atomic operations. Also a stress test
* to see if they are really atomic.
*
* Serveral threads adding to the same variable.
* Several threads adding to the same variable.
* at the end the value is compared with the expected
* and with a non-atomic counter.
*/
Expand Down
4 changes: 2 additions & 2 deletions test/testdrawchessboard.c
Expand Up @@ -75,7 +75,7 @@ main(int argc, char *argv[])
return 1;
}

/* Clear the rendering surface with the specidfied colour */
/* Clear the rendering surface with the specified color */
SDL_SetRenderDrawColor(renderer, 0xFF, 0xFF, 0xFF, 0);
SDL_RenderClear(renderer);

Expand All @@ -94,7 +94,7 @@ main(int argc, char *argv[])

DrawChessBoard(renderer);

/* Got everything on redering surface,
/* Got everything on rendering surface,
now Update the drawing image on window screen */
SDL_UpdateWindowSurface(window);

Expand Down
4 changes: 2 additions & 2 deletions test/testfile.c
Expand Up @@ -92,8 +92,8 @@ main(int argc, char *argv[])
RWOP_ERR_QUIT(rwops);
printf("test1 OK\n");

/* test 2 : check that inexistant file is not successfully opened/created when required */
/* modes : r, r+ implie that file MUST exist
/* test 2 : check that inexistent file is not successfully opened/created when required */
/* modes : r, r+ imply that file MUST exist
modes : a, a+, w, w+ checks that it succeeds (file may not exists)
*/
Expand Down

0 comments on commit 15ebd0f

Please sign in to comment.