Skip to content

Commit 2a7c9e8

Browse files
fix: correct comment
1 parent 6d1ef4d commit 2a7c9e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/BufferStream.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ concept BufferStreamResizableContiguousContainerConst = BufferStreamPossiblyNonC
6969
};
7070

7171
/// STL container types that can hold POD type values but can't be used as buffer storage.
72-
/// Guarantees T::clear() and T::push_back(T::value_type) are defined, on top of BufferStreamNonContiguousContainer.
72+
/// Guarantees T::clear() and T::push_back(T::value_type) are defined, on top of BufferStreamPossiblyNonContiguousContainer.
7373
template<typename T>
7474
concept BufferStreamPossiblyNonContiguousResizableContainer = BufferStreamPossiblyNonContiguousContainer<T> && requires(T& t) {
7575
{t.clear()} -> std::same_as<void>;

0 commit comments

Comments
 (0)