Improve parametermap example.

This commit is contained in:
tastytea 2020-01-11 14:38:03 +01:00
parent 8d04f7e9ea
commit 45e22b5d1e
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 3 additions and 2 deletions

View File

@ -61,8 +61,9 @@ enum class http_method
* @code
* parametermap parameters
* {
* {"id", "12"},
* {"poll[options]", vector<string_view>{"Yes", "No", "Maybe"}}
* {"poll[expires_in]", "86400"},
* {"poll[options]", vector<string_view>{"Yes", "No", "Maybe"}},
* {"status", "How is the weather?"}
* };
* @endcode
*