Skip to content

Commit

Permalink
joel's remarks
Browse files Browse the repository at this point in the history
  • Loading branch information
jtlap committed Oct 9, 2023
1 parent 5adf110 commit 045f30f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion include/kyosu/functions/beta.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ namespace kyosu
//!
//! **Parameters**
//!
//! * `x`,`y` : Values to process. Can be a mix of cayley_dicson and real floating values.
//! * `x`,`y` : Values to process. Can be a mix of cayley_dickson and real floating values.
//!
//! **Return value**
//!
Expand Down
2 changes: 1 addition & 1 deletion include/kyosu/functions/deta.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ namespace kyosu
//! @code
//! namespace kyosu
//! {
//! constexpr auto deta(unsigned_scalar_value k, auto z) noexcept;
//! constexpr auto deta(unsigned_scalar_value auto k, auto z) noexcept;
//! }
//! @endcode
//!
Expand Down
2 changes: 1 addition & 1 deletion include/kyosu/functions/digamma.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ namespace kyosu
//! @code
//! namespace kyosu
//! {
//! constexpr auto digamma(T z) noexcept;
//! constexpr auto digamma(auto z) noexcept;
//! }
//! @endcode
//!
Expand Down
7 changes: 3 additions & 4 deletions include/kyosu/functions/erf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ namespace kyosu
//! @code
//! namespace kyosu
//! {
//! constexpr auto erf(auto z) noexcept;
//! { template<eve::floating_ordered_value T> constexpr T erf(T z) noexcept;
//! template<kyosu::concepts::cayley_dickson T> constexpr T erf(T z) noexcept;
//! }
//! @endcode
//!
Expand All @@ -67,9 +68,7 @@ namespace kyosu
//!
//! **Return value**
//!
//! * a real input z returns eve::erf(z), a real typed value.
//!
//! * The value of the error function is returned
//! * The value of the error function is returned.
//!
//! @groupheader{Example}
//!
Expand Down
4 changes: 2 additions & 2 deletions include/kyosu/functions/is_imag.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ namespace kyosu
//! @code
//! namespace kyosu
//! {
//! template<kyosu::concepts::cayley_dicson T> constexpr auto is_imag(T z) noexcept;
//! template<eve::floating_ordered_value T> constexpr auto is_imag(T z) noexcept;
//! template<kyosu::concepts::cayley_dickson T> constexpr auto is_imag(T z) noexcept;
//! template<eve::floating_ordered_value T> constexpr auto is_imag(T z) noexcept;
//! }
//! @endcode
//!
Expand Down
7 changes: 4 additions & 3 deletions include/kyosu/functions/zeta.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,17 +56,18 @@ namespace kyosu
//! @code
//! namespace kyosu
//! {
//! constexpr auto zeta(auto z) noexcept;
//! template<eve::floating_ordered_value T> constexpr auto zeta(T z) noexcept;
//! template<kyosu::concepts::complex T> constexpr auto zeta(T z) noexcept;
//! }
//! @endcode
//!
//! **Parameters**
//!
//! * `z` : complex or real value to process.
//! * `z` : value to process.
//!
//! **Return value**
//!
//! Returns the Dirichlet zeta function: \f$ \displaystyle \sum_0^\infty \frac{1}{(n+1)^z}\f$
//! Returns the Dirichlet zeta sum: \f$ \displaystyle \sum_0^\infty \frac{1}{(n+1)^z}\f$
//!
//! @groupheader{Example}
//!
Expand Down

0 comments on commit 045f30f

Please sign in to comment.