Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveBronder committed Nov 8, 2024
1 parent c7892d6 commit cd54411
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 26 deletions.
4 changes: 2 additions & 2 deletions stan/math/prim/fun/asin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace math {
* Return the arc sine of the arithmetic argument.
*
* @tparam V `Arithmetic` argument
* @param[in] z argument
* @param[in] x argument
* @return arc sine of the argument
*/
template <typename T, require_arithmetic_t<T>* = nullptr>
Expand All @@ -32,7 +32,7 @@ inline auto asin(const T x) {
* Return the arc sine of the complex argument.
*
* @tparam V `complex<Arithmetic> argument
* @param[in] z argument
* @param[in] x argument
* @return arc sine of the argument
*/
template <typename T, require_complex_bt<std::is_arithmetic, T>* = nullptr>
Expand Down
4 changes: 2 additions & 2 deletions stan/math/prim/fun/asinh.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace math {
* Return the hyperbolic arc sine of the arithmetic argument.
*
* @tparam V An arithmetic type
* @param[in] z argument
* @param[in] x argument
* @return hyperbolic arc sine of the argument
*/
template <typename T, require_arithmetic_t<T>* = nullptr>
Expand All @@ -35,7 +35,7 @@ inline auto asinh(const T x) {
* Return the hyperbolic arc sine of the complex argument.
*
* @tparam V a complex type with inner arithmetic type.
* @param[in] z argument
* @param[in] x argument
* @return hyperbolic arc sine of the argument
*/
template <typename T, require_complex_bt<std::is_arithmetic, T>* = nullptr>
Expand Down
4 changes: 2 additions & 2 deletions stan/math/prim/fun/atan.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace math {
* Return the arc tangent of the arithmetic argument.
*
* @tparam V `Arithmetic` argument
* @param[in] z argument
* @param[in] x argument
* @return arc tangent of the argument
*/
template <typename T, require_arithmetic_t<T>* = nullptr>
Expand All @@ -30,7 +30,7 @@ inline auto atan(const T x) {
* Return the arc tangent of the complex argument.
*
* @tparam V `complex<Arithmetic>` argument
* @param[in] z argument
* @param[in] x argument
* @return arc tangent of the argument
*/
template <typename T, require_complex_bt<std::is_arithmetic, T>* = nullptr>
Expand Down
4 changes: 2 additions & 2 deletions stan/math/prim/fun/cos.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace math {
* Return the cosine of the arithmetic argument.
*
* @tparam T An arithmetic argument
* @param[in] z argument
* @param[in] x argument
* @return cosine of the argument
*/
template <typename T, require_arithmetic_t<T>* = nullptr>
Expand All @@ -29,7 +29,7 @@ inline auto cos(const T x) {
* Return the cosine of the complex argument.
*
* @tparam T `complex<Arithmetic>` argument
* @param[in] z argument
* @param[in] x argument
* @return cosine of the argument
*/
template <typename T, require_complex_bt<std::is_arithmetic, T>* = nullptr>
Expand Down
4 changes: 2 additions & 2 deletions stan/math/prim/fun/cosh.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace math {
* Return the hyperbolic cosine of the arithmetic argument.
*
* @tparam V An arithmetic type
* @param[in] z argument
* @param[in] x argument
* @return hyperbolic cosine of the argument
*/
template <typename T, require_arithmetic_t<T>* = nullptr>
Expand All @@ -28,7 +28,7 @@ inline auto cosh(const T x) {
* Return the hyperbolic cosine of the complex argument.
*
* @tparam V `complex<Arithmetic>` type of argument
* @param[in] z argument
* @param[in] x argument
* @return hyperbolic cosine of the argument
*/
template <typename T, require_complex_bt<std::is_arithmetic, T>* = nullptr>
Expand Down
4 changes: 2 additions & 2 deletions stan/math/prim/fun/exp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace math {
* complex argument.
*
* @tparam V `Arithmetic` type
* @param z input
* @param x input
* @return natural exponentiation of specified number
*/
template <typename T, require_arithmetic_t<T>* = nullptr>
Expand All @@ -30,7 +30,7 @@ inline auto exp(const T x) {
* complex argument.
*
* @tparam V `complex<Arithmetic>` type
* @param z complex number
* @param x complex number
* @return natural exponentiation of specified complex number
* @see documentation for `std::complex` for boundary condition and
* branch cut details
Expand Down
4 changes: 2 additions & 2 deletions stan/math/prim/fun/log.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace math {
* Return the natural logarithm of the arithmetic argument.
*
* @tparam V `Arithmetic` argument
* @param[in] z argument
* @param[in] x argument
* @return natural logarithm of the argument
*/
template <typename T, require_arithmetic_t<T>* = nullptr>
Expand All @@ -32,7 +32,7 @@ inline auto log(const T x) {
* Return the natural logarithm of the complex argument.
*
* @tparam V `complex<Arithmetic>` argument
* @param[in] z argument
* @param[in] x argument
* @return natural logarithm of the argument
*/
template <typename T, require_complex_t<T>* = nullptr>
Expand Down
4 changes: 2 additions & 2 deletions stan/math/prim/fun/log10.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace math {
* Return the base 10 logarithm of the arithmetic argument.
*
* @tparam V `Arithmetic` argument
* @param[in] z argument
* @param[in] x argument
* @return base 10 logarithm of the argument
*/
template <typename T, require_arithmetic_t<T>* = nullptr>
Expand All @@ -28,7 +28,7 @@ inline auto log10(const T x) {
* Return the base 10 logarithm of the complex argument.
*
* @tparam V `complex<Arithmetic>` argument
* @param[in] z argument
* @param[in] x argument
* @return base 10 logarithm of the argument
*/
template <typename T, require_complex_bt<std::is_arithmetic, T>* = nullptr>
Expand Down
4 changes: 2 additions & 2 deletions stan/math/prim/fun/sin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace math {
* Return the sine of the complex argument.
*
* @tparam V `Arithmetic` argument
* @param[in] z argument
* @param[in] x argument
* @return sine of the argument
*/
template <typename T, require_arithmetic_t<T>* = nullptr>
Expand All @@ -29,7 +29,7 @@ inline auto sin(const T x) {
* Return the sine of the complex argument.
*
* @tparam V `complex<Arithmetic>` argument
* @param[in] z argument
* @param[in] x argument
* @return sine of the argument
*/
template <typename T, require_complex_bt<std::is_arithmetic, T>* = nullptr>
Expand Down
4 changes: 2 additions & 2 deletions stan/math/prim/fun/sinh.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace math {
* Return the hyperbolic sine of the arithmetic argument.
*
* @tparam V An arithmetic argument
* @param[in] z argument
* @param[in] x argument
* @return hyperbolic sine of the argument
*/
template <typename T, require_arithmetic_t<T>* = nullptr>
Expand All @@ -27,7 +27,7 @@ inline auto sinh(const T x) {
* Return the hyperbolic sine of the complex argument.
*
* @tparam V `complex<Arithmetic>` argument
* @param[in] z argument
* @param[in] x argument
* @return hyperbolic sine of the argument
*/
template <typename T, require_complex_bt<std::is_arithmetic, T>* = nullptr>
Expand Down
4 changes: 2 additions & 2 deletions stan/math/prim/fun/sqrt.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace math {
* Return the square root of the arithmetic argument.
*
* @tparam V `Arithmetic` argument
* @param[in] z argument
* @param[in] x argument
* @return square root of the argument
*/
template <typename T, require_arithmetic_t<T>* = nullptr>
Expand All @@ -27,7 +27,7 @@ inline auto sqrt(const T x) {
* Return the square root of the complex argument.
*
* @tparam V `complex<Aritmetic>` argument
* @param[in] z argument
* @param[in] x argument
* @return square root of the argument
*/
template <typename T, require_complex_bt<std::is_arithmetic, T>* = nullptr>
Expand Down
4 changes: 2 additions & 2 deletions stan/math/prim/fun/tan.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace math {
* Return the tangent of the arithmetic argument.
*
* @tparam V value type of argument
* @param[in] z argument
* @param[in] x argument
* @return tangent of the argument
*/
template <typename T, require_arithmetic_t<T>* = nullptr>
Expand All @@ -29,7 +29,7 @@ inline auto tan(const T x) {
* Return the tangent of the complex argument.
*
* @tparam V `complex<Arithmetic> argument
* @param[in] z argument
* @param[in] x argument
* @return tangent of the argument
*/
template <typename T, require_complex_bt<std::is_arithmetic, T>* = nullptr>
Expand Down
4 changes: 2 additions & 2 deletions stan/math/prim/fun/tanh.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace math {
* Return the hyperbolic tangent of the arithmetic argument.
*
* @tparam V `Arithmetic` argument
* @param[in] z argument
* @param[in] x argument
* @return hyperbolic tangent of the argument
*/
template <typename T, require_arithmetic_t<T>* = nullptr>
Expand All @@ -29,7 +29,7 @@ inline auto tanh(const T x) {
* Return the hyperbolic tangent of the complex argument.
*
* @tparam V `complex<Arithmetic>` argument
* @param[in] z argument
* @param[in] x argument
* @return hyperbolic tangent of the argument
*/
template <typename T, require_complex_bt<std::is_arithmetic, T>* = nullptr>
Expand Down

0 comments on commit cd54411

Please sign in to comment.