From 5af2162acb1efc7de2193245ebb8c4a7eade08f8 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Fri, 6 Sep 2013 15:17:22 -0700 Subject: [PATCH] Comment. --- README.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/README.rst b/README.rst index 62c35530..1fa6e5d1 100644 --- a/README.rst +++ b/README.rst @@ -60,6 +60,7 @@ Format can be used as a safe portable replacement to ``itoa``: fmt::Writer w; w << 42; // replaces itoa(42, buffer, 10) + // access the string using w.str() or w.c_str() An object of any user-defined type for which there is an overloaded :code:`std::ostream` insertion operator (``operator<<``) can be formatted: