From 135348376abdc3e524291e56f6320b91ca6acd3f Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Sun, 1 May 2011 06:04:57 +0000 Subject: [PATCH] documentation fix [[Imported from SVN: r7225]] --- dune/gfe/unitvector.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/gfe/unitvector.hh b/dune/gfe/unitvector.hh index f2614df4..63c160e9 100644 --- a/dune/gfe/unitvector.hh +++ b/dune/gfe/unitvector.hh @@ -13,7 +13,7 @@ template <int N> class UnitVector { - /** \brief Computes sin(x/2) / x without getting unstable for small x */ + /** \brief Computes sin(x) / x without getting unstable for small x */ static double sinc(const double& x) { return (x < 1e-4) ? 1 - (x*x/6) : std::sin(x)/x; } -- GitLab