aboutsummaryrefslogtreecommitdiffhomepage
path: root/builtin_printf.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-04-10 00:12:55 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-04-10 00:12:55 -0700
commitbcab703e3136ef5c5fa72de1f3169059b5a531e9 (patch)
treeb5ae3f8fb95480abeb0dbcee6b7e955a2ff15943 /builtin_printf.cpp
parent73046ec838ca90cbf7e1ea1b1ac89f5c44eec52d (diff)
Fix a comment
Diffstat (limited to 'builtin_printf.cpp')
-rw-r--r--builtin_printf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin_printf.cpp b/builtin_printf.cpp
index a0b30f64..7f1fb4ec 100644
--- a/builtin_printf.cpp
+++ b/builtin_printf.cpp
@@ -59,7 +59,7 @@ struct builtin_printf_state_t
/* The status of the operation */
int exit_code;
- /* Whether we should stop outputting. This gets set in the case of an error, and also with the \c specifier. */
+ /* Whether we should stop outputting. This gets set in the case of an error, and also with the \c escape. */
bool early_exit;
builtin_printf_state_t() : exit_code(0), early_exit(false)