Skip to content
Snippets Groups Projects
Commit 4c50c9d1 authored by Thomas Fetzer's avatar Thomas Fetzer
Browse files

Merge branch 'cleanup/fix-typo' into 'master'

fix little typo in container.hh

See merge request !902
parents cb503ba7 1030d3c0
No related branches found
No related tags found
1 merge request!902fix little typo in container.hh
......@@ -35,7 +35,7 @@ namespace Dumux {
/*!
* \brief Writes a container to file
* \param v The container, requires being() and end() method
* \param v The container, requires begin() and end() method
* \param filename The filename to write to
*
* usage: std::vector<double> v(5, 0.0); writeContainerToFile(v, "myvector.txt");
......@@ -52,7 +52,7 @@ void writeContainerToFile(const Container& v,
/*!
* \brief Read a simple text file into a container
* \param filename The filename to write to
* \tparam Container The container type, requires being(), end(), push_back() method
* \tparam Container The container type, requires begin(), end(), push_back() method
*
* usage: auto v = readFileToContainer<std::vector<double>>("myvector.txt");
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment