From 8b60a804ba90bb61263d745d0f7170f5d8ed313b Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 9 Dec 2012 10:26:12 -0800 Subject: [PATCH] Fix an example. --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index df35012e..5bd1b6d0 100644 --- a/README.rst +++ b/README.rst @@ -24,7 +24,7 @@ This prints "Hello, world!" to stdout:: fmt::Print("Hello, {0}!") << "world"; -Arguments are accessed by position and arguments' indices can be repeated: +Arguments are accessed by position and arguments' indices can be repeated:: std::string s = str(fmt::Format("{0}{1}{0}") << "abra" << "cad"); // s == "abracadabra"