Updated standard library

Revision:
33:b6b710758ab3
Parent:
31:c72e12cd5c67
Child:
37:f19b7e7449dc
--- a/TextDisplay.h	Tue Jan 21 03:28:36 2014 +0000
+++ b/TextDisplay.h	Wed Jan 22 03:50:55 2014 +0000
@@ -61,8 +61,8 @@
     */
     virtual RetCode_t cls() = 0;
     virtual RetCode_t locate(unsigned int column, unsigned int row) = 0;
-    virtual RetCode_t foreground(uint16_t colour) = 0;
-    virtual RetCode_t background(uint16_t colour) = 0;
+    virtual RetCode_t foreground(uint16_t color) = 0;
+    virtual RetCode_t background(uint16_t color) = 0;
     // putc (from Stream)
     // printf (from Stream)
 
@@ -74,7 +74,7 @@
     uint16_t _column;
     uint16_t _row;
 
-    // colours
+    // colors
     uint16_t _foreground;
     uint16_t _background;
     char *_path;