From aebe02762832cac2de045d4b6f3d1ca17875419d Mon Sep 17 00:00:00 2001 From: Gennaro Prota Date: Mon, 7 Jul 2025 09:54:25 +0200 Subject: [PATCH] Copy edit a comment --- include/boost/dynamic_bitset/dynamic_bitset.hpp | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/include/boost/dynamic_bitset/dynamic_bitset.hpp b/include/boost/dynamic_bitset/dynamic_bitset.hpp index 1930997..fcfcc84 100644 --- a/include/boost/dynamic_bitset/dynamic_bitset.hpp +++ b/include/boost/dynamic_bitset/dynamic_bitset.hpp @@ -1097,14 +1097,15 @@ private: friend class bit_appender; class bit_appender { - // helper for stream >> - // Supplies to the lack of an efficient append at the less + // Helper for stream >>. + // + // Makes up for the lack of an efficient append at the least // significant end: bits are actually appended "at left" but - // rearranged in the destructor. From the perspective of - // client code everything works *as if* dynamic_bitset<> had - // an append_at_right() function (eventually throwing the same - // exceptions as push_back) except that the function is in fact - // called bit_appender::do_append(). + // rearranged in the destructor. From the perspective of client + // code, everything works *as if* dynamic_bitset had an + // append_at_right() function (possibly throwing the same + // exceptions as push_back()) except that the function is in + // fact called bit_appender::do_append(). // dynamic_bitset & bs; size_type n;