Spell check all source code variables, comments and strings.

This commit is contained in:
Dean Camera 2009-11-09 13:15:28 +00:00
parent c647c27639
commit d6edfe35c8
66 changed files with 247 additions and 247 deletions

View file

@ -83,7 +83,7 @@ RingBuff_Data_t Buffer_GetElement(RingBuff_t* Buffer)
if (!(Buffer->Elements))
return 0;
#elif !defined(BUFF_NOEMPTYCHECK)
#error No empty buffer check behaviour specified.
#error No empty buffer check behavior specified.
#endif
BuffData = *(Buffer->OutPtr);
@ -109,7 +109,7 @@ RingBuff_Data_t Buffer_PeekElement(const RingBuff_t* Buffer)
if (!(Buffer->Elements))
return 0;
#elif !defined(BUFF_NOEMPTYCHECK)
#error No empty buffer check behaviour specified.
#error No empty buffer check behavior specified.
#endif
BuffData = *(Buffer->OutPtr);