From: David Malcolm Date: Tue, 8 Sep 2015 19:59:42 +0000 (+0000) Subject: Trivial typo fix in pretty-print.h X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2e808a784deb8304eb54fb222a68beecb811a2a0;p=gcc.git Trivial typo fix in pretty-print.h gcc/ChangeLog: * pretty-print.h (printer_fn): Fix typo in comment. From-SVN: r227562 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c33ec074b73..fb7d644eac9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2015-09-08 David Malcolm + + * pretty-print.h (printer_fn): Fix typo in comment. + 2015-09-07 Jeff Law * tree-ssa-scopedtables.h (class const_and_copies): Fix comment typo. diff --git a/gcc/pretty-print.h b/gcc/pretty-print.h index 6e8a300fbeb..36d4e37a0d2 100644 --- a/gcc/pretty-print.h +++ b/gcc/pretty-print.h @@ -187,7 +187,7 @@ struct pp_wrapping_mode_t /* Get or set the wrapping mode as a single entity. */ #define pp_wrapping_mode(PP) (PP)->wrapping -/* The type of a hook that formats client-specific data onto a pretty_pinter. +/* The type of a hook that formats client-specific data onto a pretty_printer. A client-supplied formatter returns true if everything goes well, otherwise it returns false. */ typedef bool (*printer_fn) (pretty_printer *, text_info *, const char *,