Fix random doxygen warnings and typos
[alexxy/gromacs.git] / src / gromacs / math / paddedvector.h
index 6c199bc03e5c71d2126750836c8c800fdbd2c3a2..47aa53240f868aae5313eefd6ddc99bee9d4da4d 100644 (file)
@@ -228,7 +228,7 @@ public:
     //! \}
 
     PaddedVector() : storage_(), unpaddedEnd_(begin()) {}
-    /*! \brief Constructor that specifes the initial size. */
+    /*! \brief Constructor that specifies the initial size. */
     explicit PaddedVector(size_type count, const allocator_type& allocator = Allocator()) :
         storage_(count, allocator),
         unpaddedEnd_(begin() + count)
@@ -237,7 +237,7 @@ public:
         // the padding elements are added
         resizeWithPadding(count);
     }
-    /*! \brief Constructor that specifes the initial size and an element to copy. */
+    /*! \brief Constructor that specifies the initial size and an element to copy. */
     explicit PaddedVector(size_type count, value_type const& v, const allocator_type& allocator = Allocator()) :
         storage_(count, v, allocator),
         unpaddedEnd_(begin() + count)