From dfabf0e77a75c7b0f65879870c93a68b8307c96d Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 9 Dec 2012 19:22:38 -0800 Subject: [PATCH] Correction. --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 72045a99..dc13f8c9 100644 --- a/README.rst +++ b/README.rst @@ -29,8 +29,8 @@ Arguments are accessed by position and arguments' indices can be repeated:: std::string s = str(fmt::Format("{0}{1}{0}") << "abra" << "cad"); // s == "abracadabra" -Any user-defined type for which there is an overloaded ``std::ostream`` -insertion operator (``operator<<``) can be formatted:: +An object of any user-defined type for which there is an overloaded +``std::ostream`` insertion operator (``operator<<``) can be formatted:: class Date { int year_, month_, day_;