Improve doc.

This commit is contained in:
Victor Zverovich 2014-04-28 19:27:29 -07:00
parent 46e26191f4
commit 7e6dd376b1

View File

@ -1368,11 +1368,11 @@ inline const wchar_t *c_str(internal::FormatterProxy<wchar_t> 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 <typename Char>
void operator()(const BasicWriter<Char> &) const {}
};