fix typo in printf
authorElliott Hughes <enh@google.com>
Tue, 20 Jan 2015 21:52:41 +0000 (15:52 -0600)
committerElliott Hughes <enh@google.com>
Tue, 20 Jan 2015 21:52:41 +0000 (15:52 -0600)
toys/posix/printf.c

index 5fec4f9..1c2c547 100644 (file)
@@ -22,7 +22,7 @@ config PRINTF
 #define FOR_printf
 #include "toys.h"
 
-// Detect matching character (return true/valse) and advance pointer if match.
+// Detect matching character (return true/false) and advance pointer if match.
 static int eat(char **s, char c)
 {
   int x = (**s == c);