aboutsummaryrefslogtreecommitdiff
path: root/libbutl/lz4.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2021-09-08 16:02:41 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2021-09-08 16:02:41 +0200
commit43b92007c6c2a360b9924e1bbe58e81c4dc6e38f (patch)
tree84930cd9f153a4199857edfa7192eca27e1873f4 /libbutl/lz4.hxx
parent98c4038df36fb73601c58ccd885d1c2d3703cf6e (diff)
Implement lz4::{istream,ostream}lz4-fdstream
Diffstat (limited to 'libbutl/lz4.hxx')
-rw-r--r--libbutl/lz4.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbutl/lz4.hxx b/libbutl/lz4.hxx
index 98175c1..3b8bcc4 100644
--- a/libbutl/lz4.hxx
+++ b/libbutl/lz4.hxx
@@ -120,8 +120,8 @@ namespace butl
// This function may throw std::bad_alloc as well as exceptions thrown by
// fdstream read/write functions. It may also throw std::invalid_argument
// if the compressed content is invalid with what() returning the error
- // description. The input stream is expected to throw on badbit (but not
- // failbit). The output stream is expected to throw on badbit or failbit.
+ // description. The input stream is expected to throw on badbit but not
+ // failbit. The output stream is expected to throw on badbit or failbit.
//
// The input and most likely the output streams must be in the binary
// mode.