Doxygen PR follow-up (#2390)

This commit is contained in:
Anton Kolesnyk 2021-06-03 19:41:05 +00:00 committed by GitHub
parent cdcdac5c58
commit 75a17b00a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -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) {}

View File

@ -65,7 +65,7 @@ namespace Azure { namespace Core {
std::unique_ptr<Azure::Core::Http::RawResponse> 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.

View File

@ -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.

View File

@ -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