Merge pull request #413 from Magikhead/fix-grammatical-error-in-multipart_t-str

Address Grammatical Error in multipart_t:str()
This commit is contained in:
Simon Giesecke
2020-05-14 12:05:14 +02:00
committed by GitHub

View File

@@ -567,7 +567,7 @@ class multipart_t
ss << "\n[" << std::dec << std::setw(3) << std::setfill('0') << size
<< "] ";
if (size >= 1000) {
ss << "... (to big to print)";
ss << "... (too big to print)";
continue;
}
for (size_t j = 0; j < size; j++) {