Fix Fields, FieldsWriter concept docs

This commit is contained in:
Vinnie Falco
2018-06-17 12:12:38 -07:00
parent 93c35524a6
commit 37c90220d0
4 changed files with 10 additions and 4 deletions

View File

@@ -1,3 +1,9 @@
Version 174:
* Fix Fields, FieldsWriter concept docs
--------------------------------------------------------------------------------
Version 173: Version 173:
* Remove Autobahn testsuite doc note * Remove Autobahn testsuite doc note

View File

@@ -83,7 +83,7 @@ In this table:
[ [
The Transfer-Encoding field is present in the message. 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".
]] ]]
] ]
][ ][

View File

@@ -29,7 +29,7 @@ In this table:
* `W` denotes a type that meets the requirements of [*FieldsWriter]. * `W` denotes a type that meets the requirements of [*FieldsWriter].
* `F` denotes a __Fields__ where * `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`. * `a` is a value of type `W`.
* `f` is a value of type `F`. * `f` is a value of type `F`.
* `v` is an `unsigned` value representing the HTTP version. * `v` is an `unsigned` value representing the HTTP version.

View File

@@ -264,7 +264,7 @@ public:
/// Copy assignment /// Copy assignment
basic_parser& operator=(basic_parser const&) = delete; 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 This is used to pass a derived class where a base class is
expected, to choose a correct function overload when the expected, to choose a correct function overload when the
@@ -276,7 +276,7 @@ public:
return *this; 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 This is used to pass a derived class where a base class is
expected, to choose a correct function overload when the expected, to choose a correct function overload when the