diff options
author | ishfb <ishfb@yandex-team.ru> | 2022-02-10 16:48:08 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:08 +0300 |
commit | 069c69f58fd78de3cf2e6eb2304047281e21fb65 (patch) | |
tree | b222e5ac2e2e98872661c51ccceee5da0d291e13 /library/cpp/cgiparam | |
parent | 0170772a2dbf133f32e17ca137ff64790d43831f (diff) | |
download | ydb-069c69f58fd78de3cf2e6eb2304047281e21fb65.tar.gz |
Restoring authorship annotation for <ishfb@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/cgiparam')
-rw-r--r-- | library/cpp/cgiparam/cgiparam.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/library/cpp/cgiparam/cgiparam.h b/library/cpp/cgiparam/cgiparam.h index e25eb6e42c..87d1ab0ad4 100644 --- a/library/cpp/cgiparam/cgiparam.h +++ b/library/cpp/cgiparam/cgiparam.h @@ -46,11 +46,11 @@ public: void ScanAddAllUnescaped(const TStringBuf cgiParStr); void ScanAddAll(const TStringBuf cgiParStr); - /// Returns the string representation of all the stored parameters - /** - * @note The returned string has format <name1>=<value1>&<name2>=<value2>&... - * @note Names and values in the returned string are CGI-escaped. - */ + /// Returns the string representation of all the stored parameters + /** + * @note The returned string has format <name1>=<value1>&<name2>=<value2>&... + * @note Names and values in the returned string are CGI-escaped. + */ TString Print() const; char* Print(char* res) const; @@ -78,10 +78,10 @@ public: const auto pair = equal_range(name); return pair.first != pair.second; } - /// Returns value by name - /** - * @note The returned value is CGI-unescaped. - */ + /// Returns value by name + /** + * @note The returned value is CGI-unescaped. + */ Y_PURE_FUNCTION const TString& Get(const TStringBuf name, size_t numOfValue = 0) const noexcept; |