From 5b2a8842a4a288e006c2b4960f11d5aaf185b6a4 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 16 Dec 2012 14:30:56 -0800 Subject: [PATCH] Test commit. --- format_test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/format_test.cc b/format_test.cc index d0ab37a5..dc46f432 100644 --- a/format_test.cc +++ b/format_test.cc @@ -731,8 +731,8 @@ TEST(ActiveFormatterTest, ArgLifetime) { const fmt::ActiveFormatter &af = fmt::Format("{0}"); const_cast&>(af) << std::string("test"); // String object passed as an argument to ActiveFormatter has - // been destroyed, but ArgInserter destructor hasn't been called yet. - // But that's OK since the Arg's destructor takes care of this and + // been destroyed, but ArgInserter dtor hasn't been called yet. + // But that's OK since the Arg's dtor takes care of this and // calls Format. } #endif