}
 
 /**
- * @brief Store the parsed tokens in @a configuration
+ * @brief Store the parsed tokens in @a configuration.
  *
- * @param
- * @param
+ * @param vm The variables_map object where the configuration tokens are stored.
+ * @param configuration A @c Configuration object to where to save the
+ * configuration.
  *
- * @return
+ * @return @c true if parsed successfully, or @c false otherwise.
  */
 bool ConfigurationCommandLine::parse(
         const variables_map &vm,
 
 /**
  * @brief Parses the command line and configuration file.
  *
- * @param argc the number of arguments in command line.
- * @param argv a vector containing the command line elements.
+ * @param argc The number of arguments in command line.
+ * @param argv A vector containing the command line elements.
  *
  * @return @c true if the parsing was successful, otherwise returns @c false.
  */
 }
 
 /**
- * @return the object containing the configuration data parsed by this object.
+ * @return The object containing the configuration data parsed by this object.
  */
 Configuration ConfigurationReader::get_configuration() const
 {