changeset 1667:aa6487c2c5f8 draft

fix typo in printf
author Elliott Hughes <enh@google.com>
date Tue, 20 Jan 2015 15:52:41 -0600
parents 10922d83392a
children 7e3372a47248
files toys/posix/printf.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/toys/posix/printf.c	Sun Jan 18 14:06:14 2015 -0600
+++ b/toys/posix/printf.c	Tue Jan 20 15:52:41 2015 -0600
@@ -22,7 +22,7 @@
 #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);