summaryrefslogtreecommitdiff
path: root/byte_buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'byte_buffer.h')
-rw-r--r--byte_buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/byte_buffer.h b/byte_buffer.h
index 2fdff62..1d79b6d 100644
--- a/byte_buffer.h
+++ b/byte_buffer.h
@@ -32,7 +32,7 @@ namespace wifilogd {
// memory allocation.
//
// Usage could be as follows:
-// const auto& buffer = ByteBuffer<1024>()
+// const auto buffer = ByteBuffer<1024>()
// .AppendOrDie(header.data(), header.size())
// .AppendOrDie(body.data(), body.size());
// write(fd, buffer.data(), buffer.size());