diff --git a/sdk/core/azure-core/inc/azure/core/datetime.hpp b/sdk/core/azure-core/inc/azure/core/datetime.hpp index 1cc9164a2..1d9958c7f 100644 --- a/sdk/core/azure-core/inc/azure/core/datetime.hpp +++ b/sdk/core/azure-core/inc/azure/core/datetime.hpp @@ -114,7 +114,7 @@ public: } /** - * @brief Constructs an instance of `DateTime` from a `time_point`. + * @brief Constructs an instance of `%DateTime` from a `time_point`. * */ constexpr DateTime(time_point const& timePoint) : time_point(timePoint) {} diff --git a/sdk/core/azure-core/inc/azure/core/exception.hpp b/sdk/core/azure-core/inc/azure/core/exception.hpp index b7c4290c6..def03d8da 100644 --- a/sdk/core/azure-core/inc/azure/core/exception.hpp +++ b/sdk/core/azure-core/inc/azure/core/exception.hpp @@ -65,7 +65,7 @@ namespace Azure { namespace Core { std::unique_ptr RawResponse; /** - * @brief Constructs a new `%RequestFailedException` with a message string. + * @brief Constructs a new `%RequestFailedException` with a \p message string. * * @note An Exception without an HTTP raw response represents an exception that happened * before sending the request to the server. diff --git a/sdk/core/azure-core/inc/azure/core/http/http.hpp b/sdk/core/azure-core/inc/azure/core/http/http.hpp index 37d8f8178..960dea85a 100644 --- a/sdk/core/azure-core/inc/azure/core/http/http.hpp +++ b/sdk/core/azure-core/inc/azure/core/http/http.hpp @@ -56,7 +56,7 @@ namespace Azure { namespace Core { namespace Http { class TransportException final : public Azure::Core::RequestFailedException { public: /** - * @brief Constructs `%TransportException` with \p message string. + * @brief Constructs `%TransportException` with a \p message string. * * @remark The transport policy will throw this error whenever the transport adapter fail to * perform a request. diff --git a/sdk/core/azure-core/inc/azure/core/http/policies/policy.hpp b/sdk/core/azure-core/inc/azure/core/http/policies/policy.hpp index d44cefa38..37fc35915 100644 --- a/sdk/core/azure-core/inc/azure/core/http/policies/policy.hpp +++ b/sdk/core/azure-core/inc/azure/core/http/policies/policy.hpp @@ -214,7 +214,7 @@ namespace Azure { namespace Core { namespace Http { namespace Policies { /** * @brief The next HTTP policy in the stack sequence of policies. - * @note `%NextHttpPolicy` is an abstraction representing a next line in the stack sequence of + * @note `%NextHttpPolicy` is an abstraction representing the next policy in the stack sequence of * policies, from the caller's perspective. * @note Inside the #Azure::Core::Http::Policies::HttpPolicy::Send() function implementation, an * object of ths class represent the next HTTP policy in the stack of HTTP policies, relative to