From dd32508ce6cf2d86fdde73fcac038bc4e3d823d0 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 10 Dec 2013 08:01:30 -0800 Subject: [PATCH] Fix grammar. --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 58fb10ce..caa8a54f 100644 --- a/README.rst +++ b/README.rst @@ -55,7 +55,7 @@ Arguments can be accessed by position and arguments' indices can be repeated: std::string s = str(fmt::Format("{0}{1}{0}") << "abra" << "cad"); // s == "abracadabra" -Format can be used as a safe portable replacement to ``itoa``: +Format can be used as a safe portable replacement for ``itoa``: .. code-block:: c++