Correction.

This commit is contained in:
Victor Zverovich 2012-12-09 19:25:53 -08:00
parent a93886f1b0
commit 4d28757d45

View File

@ -43,7 +43,7 @@ An object of any user-defined type for which there is an overloaded
}
};
std::string s = str(fmt::Format("The date is {0}") << Date(2012, 12, 9);
std::string s = str(fmt::Format("The date is {0}") << Date(2012, 12, 9));
// s == "The date is 2012-12-9"
Motivation