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

Commit

Permalink
fixed a spelling error in the documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
pendletonrc committed Sep 25, 2009
1 parent 810c4af commit fe628c5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/atomic/dummy/SDL_atomic.c
Expand Up @@ -107,7 +107,7 @@ SDL_AtomicUnlock(SDL_SpinLock *lock)
pretty much eliminate the chances of several atomic operations on
different data from waiting on the same "big lock". If it isn't
then the table of locks can be expanded to a new size so long as
the new size if a power of two.
the new size is a power of two.
*/

static SDL_SpinLock locks[32] = {
Expand Down
2 changes: 1 addition & 1 deletion src/atomic/linux/SDL_atomic.c
Expand Up @@ -126,7 +126,7 @@ SDL_AtomicUnlock(SDL_SpinLock *lock)
pretty much eliminate the chances of several atomic operations on
different data from waiting on the same "big lock". If it isn't
then the table of locks can be expanded to a new size so long as
the new size if a power of two.
the new size is a power of two.
*/

static SDL_SpinLock locks[32] = {
Expand Down
2 changes: 1 addition & 1 deletion src/atomic/macosx/SDL_atomic.c
Expand Up @@ -107,7 +107,7 @@ SDL_AtomicUnlock(SDL_SpinLock *lock)
pretty much eliminate the chances of several atomic operations on
different data from waiting on the same "big lock". If it isn't
then the table of locks can be expanded to a new size so long as
the new size if a power of two.
the new size is a power of two.
*/

static SDL_SpinLock locks[32] = {
Expand Down
2 changes: 1 addition & 1 deletion src/atomic/win32/SDL_atomic.c
Expand Up @@ -116,7 +116,7 @@ SDL_AtomicUnlock(SDL_SpinLock *lock)
pretty much eliminate the chances of several atomic operations on
different data from waiting on the same "big lock". If it isn't
then the table of locks can be expanded to a new size so long as
the new size if a power of two.
the new size is a power of two.
*/

static SDL_SpinLock locks[32] = {
Expand Down

0 comments on commit fe628c5

Please sign in to comment.