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"