From: Timo Heister Date: Wed, 4 Dec 2013 21:03:24 +0000 (+0000) Subject: improve documentation X-Git-Tag: v8.1.0~92 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3464608a99d68f814e478de6d6e2e4b17b59b30a;p=dealii.git improve documentation git-svn-id: https://svn.dealii.org/trunk@31887 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/base/function_parser.h b/deal.II/include/deal.II/base/function_parser.h index 0fff67c271..77858606fc 100644 --- a/deal.II/include/deal.II/base/function_parser.h +++ b/deal.II/include/deal.II/base/function_parser.h @@ -508,8 +508,8 @@ public: /** * Return all components of a - * vector-valued function at a - * given point. + * vector-valued function at the + * given point @p p. * * values shall have the * right size beforehand, diff --git a/deal.II/include/deal.II/base/parsed_function.h b/deal.II/include/deal.II/base/parsed_function.h index 408ec9ae17..90a3202b50 100644 --- a/deal.II/include/deal.II/base/parsed_function.h +++ b/deal.II/include/deal.II/base/parsed_function.h @@ -221,8 +221,9 @@ namespace Functions void parse_parameters(ParameterHandler &prm); /** - * Get one value at the given - * point. + * Return all components of a + * vector-valued function at the + * given point @p p. */ virtual void vector_value (const Point &p, Vector &values) const; @@ -258,7 +259,7 @@ namespace Functions * The object with which we do * computations. */ - FunctionParser function_object; + FunctionParse function_object; }; }