diff --git a/sdk/core/azure-core/inc/azure/core/internal/json/json.hpp b/sdk/core/azure-core/inc/azure/core/internal/json/json.hpp index bc9c67abe..00ae6c003 100644 --- a/sdk/core/azure-core/inc/azure/core/internal/json/json.hpp +++ b/sdk/core/azure-core/inc/azure/core/internal/json/json.hpp @@ -5997,7 +5997,7 @@ namespace Azure { namespace Core { namespace Json { namespace _internal { namesp @param[in, out] result A reference to the string variable where the read string is to be stored. @return `true` if the \x00-byte indicating the end of the string was - encountered before the EOF; false` indicates an unexpected EOF. + encountered before the EOF; `false` indicates an unexpected EOF. */ bool get_bson_cstr(string_t& result) { diff --git a/sdk/core/azure-core/inc/azure/core/url.hpp b/sdk/core/azure-core/inc/azure/core/url.hpp index 3a5fb5f21..ae1cf43c6 100644 --- a/sdk/core/azure-core/inc/azure/core/url.hpp +++ b/sdk/core/azure-core/inc/azure/core/url.hpp @@ -116,7 +116,7 @@ namespace Azure { namespace Core { /** * @brief Sets URL host. * - * @param host URL host. + * @param encodedHost URL host, already encoded. */ void SetHost(const std::string& encodedHost) { m_host = encodedHost; } @@ -130,7 +130,7 @@ namespace Azure { namespace Core { /** * @brief Sets URL path. * - * @param path URL path. + * @param encodedPath URL path, already encoded. */ void SetPath(const std::string& encodedPath) { m_encodedPath = encodedPath; } @@ -139,7 +139,7 @@ namespace Azure { namespace Core { * * @note Keys and values in \p queryParameters are expected to be URL-encoded. * - * @param queryParameters + * @param queryParameters query parameters for request. */ void SetQueryParameters(std::map queryParameters) { @@ -152,7 +152,7 @@ namespace Azure { namespace Core { /** * @brief Appends an element of URL path. * - * @param path URL path element to append. + * @param encodedPath URL path element to append, already encoded. */ void AppendPath(const std::string& encodedPath) { diff --git a/sdk/core/azure-core/src/http/curl/curl_connection_private.hpp b/sdk/core/azure-core/src/http/curl/curl_connection_private.hpp index 8e60a3ffd..2b03fd243 100644 --- a/sdk/core/azure-core/src/http/curl/curl_connection_private.hpp +++ b/sdk/core/azure-core/src/http/curl/curl_connection_private.hpp @@ -118,9 +118,11 @@ namespace Azure { namespace Core { namespace Http { public: /** - * @Brief Construct CURL HTTP connection. + * @brief Construct CURL HTTP connection. * - * @param host HTTP connection host name. + * @param handle CURL handle. + * + * @param connectionPropertiesKey CURL connection properties key */ CurlConnection(CURL* handle, std::string connectionPropertiesKey) : m_handle(handle), m_connectionKey(std::move(connectionPropertiesKey))