From fc29de9f5545c03c67136c0db983acf4c2c88323 Mon Sep 17 00:00:00 2001 From: Anton Karpov Date: Wed, 5 Aug 2026 17:29:21 +0300 Subject: [PATCH] Fix the template parameter name in buffers_iterator_type The block documents @tparam T while the template takes BufferSequence. The three @tparam tags above it in the same file all name it correctly. --- include/boost/beast/core/buffer_traits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/beast/core/buffer_traits.hpp b/include/boost/beast/core/buffer_traits.hpp index 2f3c7614c4..945f4ae028 100644 --- a/include/boost/beast/core/buffer_traits.hpp +++ b/include/boost/beast/core/buffer_traits.hpp @@ -106,7 +106,7 @@ using buffers_type = typename std::conditional< This metafunction is used to determine the type of iterator used by a particular buffer sequence. - @tparam T The buffer sequence type to use. The resulting + @tparam BufferSequence The buffer sequence type to use. The resulting type alias will be equal to the iterator type used by the buffer sequence. */