From bcab703e3136ef5c5fa72de1f3169059b5a531e9 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Wed, 10 Apr 2013 00:12:55 -0700 Subject: [PATCH] Fix a comment --- builtin_printf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin_printf.cpp b/builtin_printf.cpp index a0b30f641..7f1fb4eca 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)