Skip to content

Commit 423be5f

Browse files
committed
Addressed review comments
1 parent 38075c4 commit 423be5f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Release/include/cpprest/ws_msg.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ class websocket_outgoing_message
149149
/// Sets a UTF-8 message as the message body.
150150
/// </summary>
151151
/// <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>
153153
void set_utf8_message(concurrency::streams::istream istream)
154154
{
155155
this->_set_message(istream, SIZE_MAX, websocket_message_type::text_message);
@@ -159,7 +159,7 @@ class websocket_outgoing_message
159159
/// Sets a UTF-8 message as the message body.
160160
/// </summary>
161161
/// <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>
163163
void set_utf8_message(concurrency::streams::istream istream, size_t len)
164164
{
165165
this->_set_message(istream, len, websocket_message_type::text_message);
@@ -169,7 +169,7 @@ class websocket_outgoing_message
169169
/// Sets binary data as the message body.
170170
/// </summary>
171171
/// <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>
173173
void set_binary_message(concurrency::streams::istream istream, size_t len)
174174
{
175175
this->_set_message(istream, len, websocket_message_type::binary_message);
@@ -179,7 +179,7 @@ class websocket_outgoing_message
179179
/// Sets binary data as the message body.
180180
/// </summary>
181181
/// <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>
183183
void set_binary_message(concurrency::streams::istream istream)
184184
{
185185
this->_set_message(istream, SIZE_MAX, websocket_message_type::binary_message);

0 commit comments

Comments
 (0)