Skip to content

Commit

Permalink
Merge pull request zeromq#413 from Magikhead/fix-grammatical-error-in…
Browse files Browse the repository at this point in the history
…-multipart_t-str

Address Grammatical Error in multipart_t:str()
  • Loading branch information
sigiesec authored May 14, 2020
2 parents a6ca65c + 0bba33d commit bb321ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zmq_addon.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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++) {
Expand Down

0 comments on commit bb321ee

Please sign in to comment.