Add Doxygen documentation to the completed portions of the PDI programming protocol...
[pub/USBasp.git] / Projects / USBtoSerial / Lib / RingBuff.c
index 1f477f1..0dd4a06 100644 (file)
@@ -83,7 +83,7 @@ RingBuff_Data_t Buffer_GetElement(RingBuff_t* Buffer)
                if (!(Buffer->Elements))\r
                  return 0;\r
 #elif !defined(BUFF_NOEMPTYCHECK)\r
-       #error No empty buffer check behaviour specified.\r
+       #error No empty buffer check behavior specified.\r
 #endif\r
 \r
                BuffData = *(Buffer->OutPtr);\r
@@ -109,7 +109,7 @@ RingBuff_Data_t Buffer_PeekElement(const RingBuff_t* Buffer)
                if (!(Buffer->Elements))\r
                  return 0;\r
 #elif !defined(BUFF_NOEMPTYCHECK)\r
-       #error No empty buffer check behaviour specified.\r
+       #error No empty buffer check behavior specified.\r
 #endif\r
 \r
                BuffData = *(Buffer->OutPtr);\r