From b0bca97a0db05e0a7b1d247c9eadc8c8b56ef380 Mon Sep 17 00:00:00 2001 From: MHaselmaier Date: Tue, 21 Dec 2021 18:36:54 +0100 Subject: [PATCH] Removed '<' and '>' from documentation --- src/oatpp/web/mime/multipart/PartList.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/oatpp/web/mime/multipart/PartList.hpp b/src/oatpp/web/mime/multipart/PartList.hpp index 964e2170..6c141ade 100644 --- a/src/oatpp/web/mime/multipart/PartList.hpp +++ b/src/oatpp/web/mime/multipart/PartList.hpp @@ -78,7 +78,7 @@ public: * Returns the first part if multiple parts with same name exist. * Applicable to named parts only. * @param name - &id:oatpp::String;. - * @return - &id:oatpp::web::mime::multipart::Part;. + * @return - `std::shared_ptr` to &id:oatpp::web::mime::multipart::Part;. */ std::shared_ptr getNamedPart(const oatpp::String& name); @@ -86,7 +86,7 @@ public: * Get all parts by name
* Applicable to named parts only. * @param name - &id:oatpp::String;. - * @return - std::list>. + * @return - `std::list` of `std::shared_ptr` to &id:oatpp::web::mime::multipart::Part;. */ std::list> getNamedParts(const oatpp::String& name);