Minor comment change to string() functions

This commit is contained in:
eidheim 2017-08-01 07:58:19 +02:00
commit ea2b0f4a80
2 changed files with 2 additions and 2 deletions

View file

@ -43,7 +43,7 @@ namespace SimpleWeb {
size_t size() noexcept {
return streambuf.size();
}
/// Convenience function to return std::string. Note that the stream buffer is emptied when this functions is used.
/// Convenience function to return std::string. The stream buffer is consumed.
std::string string() noexcept {
try {
std::stringstream ss;