mirror of
https://github.com/boostorg/beast.git
synced 2025-08-03 14:54:32 +02:00
Fix Fields, FieldsWriter concept docs
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
Version 174:
|
||||
|
||||
* Fix Fields, FieldsWriter concept docs
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
Version 173:
|
||||
|
||||
* Remove Autobahn testsuite doc note
|
||||
|
@@ -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".
|
||||
]]
|
||||
]
|
||||
][
|
||||
|
@@ -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<W, F::reader>::value == true`.
|
||||
`std::is_same<W, F::writer>::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.
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user