Skip to content

Commit b32aac6

Browse files
authored
Fix typos in the documentation
1 parent 38c219b commit b32aac6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -595,10 +595,10 @@ Details on the `http::file_info` structure.
595595
Details on the `http_arg_value` structure.
596596

597597
* _**std::string_view** get_flat_value() **const**:_ Returns only the first value provided for the key.
598-
* _**std::vector<std::string_view>** get_all_values() **const**:_ Returns all the values provided for the key.
598+
* _**std::vector\<std::string_view\>** get_all_values() **const**:_ Returns all the values provided for the key.
599599
* _**operator** std::string() **const**:_ Converts the http_arg_value to a string with the same logic as `get_flat_value`.
600600
* _**operator** std::string_view() **const**:_ Converts the http_arg_value to a string_view with the same logic as `get_flat_value`.
601-
* _**operator** std::vector<std::string>() **const**:_ Converts the http_arg_value to a std::vector<std::string> with the same logic as `get_value`.
601+
* _**operator** std::vector\<std::string\>() **const**:_ Converts the http_arg_value to a std::vector<std::string> with the same logic as `get_value`.
602602

603603
#### Example of handler reading arguments from a request
604604
```cpp

0 commit comments

Comments
 (0)