diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fc3f715..1370e0fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +Version 174: + +* Fix Fields, FieldsWriter concept docs + +-------------------------------------------------------------------------------- + Version 173: * Remove Autobahn testsuite doc note diff --git a/doc/qbk/07_concepts/Fields.qbk b/doc/qbk/07_concepts/Fields.qbk index 79211d34..f0c06dd2 100644 --- a/doc/qbk/07_concepts/Fields.qbk +++ b/doc/qbk/07_concepts/Fields.qbk @@ -83,7 +83,7 @@ In this table: [ The Transfer-Encoding field is present in the message. ][ - The last item the value of the field is "chunked". + The last item in value of the field is "chunked". ]] ] ][ diff --git a/doc/qbk/07_concepts/FieldsWriter.qbk b/doc/qbk/07_concepts/FieldsWriter.qbk index 52adcbf3..d0a1a85a 100644 --- a/doc/qbk/07_concepts/FieldsWriter.qbk +++ b/doc/qbk/07_concepts/FieldsWriter.qbk @@ -29,7 +29,7 @@ In this table: * `W` denotes a type that meets the requirements of [*FieldsWriter]. * `F` denotes a __Fields__ where - `std::is_same::value == true`. + `std::is_same::value == true`. * `a` is a value of type `W`. * `f` is a value of type `F`. * `v` is an `unsigned` value representing the HTTP version. diff --git a/include/boost/beast/http/basic_parser.hpp b/include/boost/beast/http/basic_parser.hpp index 552adec7..dfa1965c 100644 --- a/include/boost/beast/http/basic_parser.hpp +++ b/include/boost/beast/http/basic_parser.hpp @@ -264,7 +264,7 @@ public: /// Copy assignment basic_parser& operator=(basic_parser const&) = delete; - /** Returns a reference to this object as a @ref basic_parser. + /** Returns a reference to this object as a `basic_parser`. This is used to pass a derived class where a base class is expected, to choose a correct function overload when the @@ -276,7 +276,7 @@ public: return *this; } - /** Returns a constant reference to this object as a @ref basic_parser. + /** Returns a constant reference to this object as a `basic_parser`. This is used to pass a derived class where a base class is expected, to choose a correct function overload when the