diff options
Diffstat (limited to 'net/ftp/ftp_ctrl_response_buffer.h')
-rw-r--r-- | net/ftp/ftp_ctrl_response_buffer.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/ftp/ftp_ctrl_response_buffer.h b/net/ftp/ftp_ctrl_response_buffer.h index 33f04b9..66aae8b 100644 --- a/net/ftp/ftp_ctrl_response_buffer.h +++ b/net/ftp/ftp_ctrl_response_buffer.h @@ -16,8 +16,7 @@ namespace net { struct FtpCtrlResponse { static const int kInvalidStatusCode; - FtpCtrlResponse() : status_code(kInvalidStatusCode) { - } + FtpCtrlResponse() : status_code(kInvalidStatusCode) {} int status_code; // Three-digit status code. std::vector<std::string> lines; // Response lines, without CRLFs. @@ -69,7 +68,7 @@ class FtpCtrlResponseBuffer { // Part of response parsed as status text. std::string status_text; - // Text before parsing, without ending CRLF. + // Text before parsing, without terminating CRLF. std::string raw_text; }; |