From 7e6dd376b10a7eeb28fd01ad902349fedf5984ee Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Mon, 28 Apr 2014 19:27:29 -0700 Subject: [PATCH] Improve doc. --- format.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/format.h b/format.h index 32ad22f0..cfa3fd27 100644 --- a/format.h +++ b/format.h @@ -1368,11 +1368,11 @@ inline const wchar_t *c_str(internal::FormatterProxy p) { } /** - A sink that ignores output. + A sink that discards all output written to it. */ class NullSink { public: - /** Ignores the output. */ + /** Discards the output. */ template void operator()(const BasicWriter &) const {} };