mirror of
https://github.com/zeromq/cppzmq.git
synced 2024-12-12 10:33:52 +01:00
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:
commit
bb321ee46f
@ -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++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user