Skip to content

Commit a822772

Browse files
committed
Revised buffer text to hopefully eliminate a point of grammatical confusion with some users
1 parent e5261f1 commit a822772

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,15 +161,15 @@ fn main() {
161161
)
162162
.arg(
163163
Arg::with_name("send_buffer")
164-
.help("send_buffer, in bytes; affects TCP window-size (only supported on some platforms; if set too small, a 'resource unavailable' error may occur)")
164+
.help("send_buffer, in bytes (only supported on some platforms; if set too small, a 'resource unavailable' error may occur; affects TCP window-size)")
165165
.takes_value(true)
166166
.long("send-buffer")
167167
.required(false)
168168
.default_value("0")
169169
)
170170
.arg(
171171
Arg::with_name("receive_buffer")
172-
.help("receive_buffer, in bytes; affects TCP window-size (only supported on some platforms; if set too small, a 'resource unavailable' error may occur)")
172+
.help("receive_buffer, in bytes (only supported on some platforms; if set too small, a 'resource unavailable' error may occur; affects TCP window-size)")
173173
.takes_value(true)
174174
.long("receive-buffer")
175175
.required(false)

0 commit comments

Comments
 (0)