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
commit bb321ee46f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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