Edit readme.

This commit is contained in:
Victor Zverovich 2014-07-26 07:25:31 -07:00
parent 2a747b19e0
commit aa6aa4207e

View File

@ -54,8 +54,8 @@ This prints ``Hello, world!`` to stdout:
.. code-block:: c++
fmt::print("Hello, {}!", "world"); // uses Python-like format
fmt::printf("Hello, %s!", "world"); // uses printf format
fmt::print("Hello, {}!", "world"); // uses Python-like format string syntax
fmt::printf("Hello, %s!", "world"); // uses printf format string syntax
Arguments can be accessed by position and arguments' indices can be repeated: