From 77637e7e16d829c80765b01afd20c9125fd9a81a Mon Sep 17 00:00:00 2001 From: LightVillet Date: Sat, 12 Apr 2025 19:04:36 +0300 Subject: [PATCH] fix typo --- src/httpserver/http_request.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/httpserver/http_request.hpp b/src/httpserver/http_request.hpp index f01743dc..142251db 100644 --- a/src/httpserver/http_request.hpp +++ b/src/httpserver/http_request.hpp @@ -181,7 +181,7 @@ class http_request { /** * Method used to get a specific argument passed with the request. - * @param ket the specific argument to get the value from + * @param key the specific argument to get the value from * @return the value(s) of the arg. **/ http_arg_value get_arg(std::string_view key) const; @@ -189,7 +189,7 @@ class http_request { /** * Method used to get a specific argument passed with the request. * If the arg key has more than one value, only one is returned. - * @param ket the specific argument to get the value from + * @param key the specific argument to get the value from * @return the value of the arg. **/ std::string_view get_arg_flat(std::string_view key) const;