From e63e524430f08d53bbc0cb375f74a37f0e79c73a Mon Sep 17 00:00:00 2001 From: Marcin Siodelski Date: Thu, 22 Dec 2016 15:30:53 +0100 Subject: [PATCH] [5088] Fixed doxygen errors. --- src/lib/http/date_time.cc | 2 +- src/lib/http/date_time.h | 8 ++++---- src/lib/http/response_creator.h | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lib/http/date_time.cc b/src/lib/http/date_time.cc index 0800b67ae6..552f1a69b3 100644 --- a/src/lib/http/date_time.cc +++ b/src/lib/http/date_time.cc @@ -19,7 +19,7 @@ HttpDateTime::HttpDateTime() : time_(boost::posix_time::microsec_clock::universal_time()) { } -HttpDateTime::HttpDateTime(const ptime& t) +HttpDateTime::HttpDateTime(const boost::posix_time::ptime& t) : time_(t) { } diff --git a/src/lib/http/date_time.h b/src/lib/http/date_time.h index c26a381875..8ac15b816b 100644 --- a/src/lib/http/date_time.h +++ b/src/lib/http/date_time.h @@ -35,8 +35,8 @@ public: /// The first format is preferred but implementations must also support /// remaining two obsolete formats for compatibility. This class implements /// parsers and generators for all three formats. It uses @c boost::posix_time -/// to represent time and date. It uses @ref boost::date_time::time_facet -/// and @ref boost::date_time::time_input_facet to generate and parse the +/// to represent time and date. It uses @c boost::date_time::time_facet +/// and @c boost::date_time::time_input_facet to generate and parse the /// timestamps. class HttpDateTime { public: @@ -46,14 +46,14 @@ public: /// Sets current universal time as time value. HttpDateTime(); - /// @brief Construct from @ref boost::posix_time::ptime object. + /// @brief Construct from @c boost::posix_time::ptime object. /// /// @param t time value to be set. explicit HttpDateTime(const boost::posix_time::ptime& t); /// @brief Returns time encapsulated by this class. /// - /// @return @ref boost::posix_time::ptime value encapsulated by the instance + /// @return @c boost::posix_time::ptime value encapsulated by the instance /// of this class. boost::posix_time::ptime getPtime() const { return (time_); diff --git a/src/lib/http/response_creator.h b/src/lib/http/response_creator.h index e83bc9e767..602670bb89 100644 --- a/src/lib/http/response_creator.h +++ b/src/lib/http/response_creator.h @@ -67,7 +67,7 @@ public: protected: - /// @brief Creates implentation specific HTTP 400 response.. + /// @brief Creates implentation specific HTTP 400 response. /// /// @param request Pointer to an object representing HTTP request. /// @return Pointer to an object representing HTTP 400 response. -- 2.47.3