From d44368a931cb5402c1c0ac7773e65839267ec96e Mon Sep 17 00:00:00 2001 From: jtlap Date: Tue, 10 Oct 2023 17:57:26 +0200 Subject: [PATCH] acos and acosh mising line --- include/eve/module/math/regular/acos.hpp | 1 + include/eve/module/math/regular/acosh.hpp | 1 + 2 files changed, 2 insertions(+) diff --git a/include/eve/module/math/regular/acos.hpp b/include/eve/module/math/regular/acos.hpp index 25f09cd355..37dde4105e 100644 --- a/include/eve/module/math/regular/acos.hpp +++ b/include/eve/module/math/regular/acos.hpp @@ -47,6 +47,7 @@ namespace eve //! * If the element is \f$1\f$, \f$+0\f$ is returned. //! * If the element \f$|x| > 1\f$, `NaN` is returned. //! * If the element is a `Nan`, `NaN` is returned. +//! //! @groupheader{Example} //! //! @godbolt{doc/math/regular/acos.cpp} diff --git a/include/eve/module/math/regular/acosh.hpp b/include/eve/module/math/regular/acosh.hpp index 3226830f47..fd7e2ac0a0 100644 --- a/include/eve/module/math/regular/acosh.hpp +++ b/include/eve/module/math/regular/acosh.hpp @@ -50,6 +50,7 @@ namespace eve //! * If the element is \f$1\f$, \f$+0\f$ is returned. //! * If the element is \f$+\infty\f$, \f$+\infty\f$ is returned. //! * If the element is a `Nan`, `NaN` is returned. +//! //! @groupheader{Example} //! //! @godbolt{doc/math/regular/acosh.cpp}