From ecb44372e599a15aba057df41cfe699a3fabd886 Mon Sep 17 00:00:00 2001 From: Shane Grant Date: Tue, 22 Dec 2015 14:52:02 -0800 Subject: [PATCH] grammar fix --- include/cereal/archives/xml.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cereal/archives/xml.hpp b/include/cereal/archives/xml.hpp index 9a628c40..5bd3aebb 100644 --- a/include/cereal/archives/xml.hpp +++ b/include/cereal/archives/xml.hpp @@ -234,7 +234,7 @@ namespace cereal auto strValue = itsOS.str(); - // itsOS.str() may contains data from previous calls after the first '\0' that was just inserted + // itsOS.str() may contain data from previous calls after the first '\0' that was just inserted // and this data is counted in the length call. We make sure to remove that section so that the // whitespace validation is done properly strValue.resize(std::strlen(strValue.c_str()));