Parcourir la source

[2157] minor editorial fixes: add \brief and an empty line for readability

JINMEI Tatuya il y a 12 ans
Parent
commit
a170537080
1 fichiers modifiés avec 5 ajouts et 4 suppressions
  1. 5 4
      src/lib/statistics/counter_dict.h

+ 5 - 4
src/lib/statistics/counter_dict.h

@@ -138,15 +138,16 @@ public:
                                 boost::forward_traversal_tag>
     {
         public:
-            /// The constructor.
+            /// \brief The constructor.
             ///
             /// This constructor is mostly exception free. But it may still
             /// throw a standard exception if memory allocation fails
             /// inside the method.
             ConstIterator() {}
-            /// Constructor from implementation detail DictionaryMap::const_iterator
-            ConstIterator(
-                DictionaryMap::const_iterator iterator) :
+
+            /// \brief Constructor from implementation detail
+            /// DictionaryMap::const_iterator
+            ConstIterator(DictionaryMap::const_iterator iterator) :
                 iterator_(iterator)
             {}