Skip to content

Commit bb321ee

Browse files
authored
Merge pull request #413 from Magikhead/fix-grammatical-error-in-multipart_t-str
Address Grammatical Error in multipart_t:str()
2 parents a6ca65c + 0bba33d commit bb321ee

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)