@@ -149,7 +149,7 @@ class websocket_outgoing_message
149
149
// / Sets a UTF-8 message as the message body.
150
150
// / </summary>
151
151
// / <param name="istream">casablanca input stream representing the body of the message.</param>
152
- // / <remarks>Upon sending, the entire stream will be buffered to determine the length.</remarks>
152
+ // / <remarks>Upon sending, the entire stream may be buffered to determine the length.</remarks>
153
153
void set_utf8_message (concurrency::streams::istream istream)
154
154
{
155
155
this ->_set_message (istream, SIZE_MAX, websocket_message_type::text_message);
@@ -159,7 +159,7 @@ class websocket_outgoing_message
159
159
// / Sets a UTF-8 message as the message body.
160
160
// / </summary>
161
161
// / <param name="istream">casablanca input stream representing the body of the message.</param>
162
- // / <param name="len">number of bytes to send</param>
162
+ // / <param name="len">number of bytes to send. </param>
163
163
void set_utf8_message (concurrency::streams::istream istream, size_t len)
164
164
{
165
165
this ->_set_message (istream, len, websocket_message_type::text_message);
@@ -169,7 +169,7 @@ class websocket_outgoing_message
169
169
// / Sets binary data as the message body.
170
170
// / </summary>
171
171
// / <param name="istream">casablanca input stream representing the body of the message.</param>
172
- // / <param name="len">number of bytes to send</param>
172
+ // / <param name="len">number of bytes to send. </param>
173
173
void set_binary_message (concurrency::streams::istream istream, size_t len)
174
174
{
175
175
this ->_set_message (istream, len, websocket_message_type::binary_message);
@@ -179,7 +179,7 @@ class websocket_outgoing_message
179
179
// / Sets binary data as the message body.
180
180
// / </summary>
181
181
// / <param name="istream">casablanca input stream representing the body of the message.</param>
182
- // / <remarks>Upon sending, the entire stream will be buffered to determine the length.</remarks>
182
+ // / <remarks>Upon sending, the entire stream may be buffered to determine the length.</remarks>
183
183
void set_binary_message (concurrency::streams::istream istream)
184
184
{
185
185
this ->_set_message (istream, SIZE_MAX, websocket_message_type::binary_message);
0 commit comments