From 1030d3c09e3fd7986ad15bb385bd869f608d1319 Mon Sep 17 00:00:00 2001 From: Gabriele Seitz <seitz@molly.site> Date: Mon, 9 Apr 2018 16:42:32 +0200 Subject: [PATCH] fix little typo in container.hh --- dumux/io/container.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dumux/io/container.hh b/dumux/io/container.hh index dff3282332..fd4a17e3af 100644 --- a/dumux/io/container.hh +++ b/dumux/io/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"); */ -- GitLab