Skip to content

Commit 0bba33d

Browse files
author
Collin H. Reed
committed
Address Grammatical Error in multipart_t:str()
Fixes grammatical error in multipart_t:str() function.
1 parent 3746e5c commit 0bba33d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zmq_addon.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ class multipart_t
567567
ss << "\n[" << std::dec << std::setw(3) << std::setfill('0') << size
568568
<< "] ";
569569
if (size >= 1000) {
570-
ss << "... (to big to print)";
570+
ss << "... (too big to print)";
571571
continue;
572572
}
573573
for (size_t j = 0; j < size; j++) {

0 commit comments

Comments
 (0)