From 43b389f35844e678627694c91ec58babb62e2e03 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Thu, 2 Oct 2014 06:44:34 -0700 Subject: [PATCH] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 96b51bb3..7be5067a 100644 --- a/README.rst +++ b/README.rst @@ -68,7 +68,7 @@ C++ Format can be used as a safe portable replacement for ``itoa``: .. code-block:: c++ - fmt::Writer w; + fmt::MemoryWriter w; w << 42; // replaces itoa(42, buffer, 10) w << fmt::hex(42); // replaces itoa(42, buffer, 16) // access the string using w.str() or w.c_str()