Skip to content

Commit 31dfed7

Browse files
authored
Minor changes to doc annotations
1 parent d53069f commit 31dfed7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/httpserver/http_request.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,13 +140,13 @@ class http_request {
140140
* Method to get or create a file info struct in the map if the provided filename is already in the map
141141
* return the exiting file info struct, otherwise create one in the map and return it.
142142
* @param upload_file_name the file name the user uploaded (this is the identifier for the map entry)
143-
* @result a file info struct file_info_s
143+
* @result a http::file_info
144144
**/
145145
http::file_info& get_or_create_file_info(const std::string& key, const std::string& upload_file_name);
146146

147147
/**
148148
* Method used to get all files passed with the request.
149-
* @result result a map<string, file_info_s> > that will be filled with all files
149+
* @result result a map<std::string, map<std::string, http::file_info> > that will be filled with all files
150150
**/
151151
const std::map<std::string, std::map<std::string, http::file_info>> get_files() const {
152152
return files;

0 commit comments

Comments
 (0)