From b912e7cbf168212bd0a332179fc1ae05bb4ebb6a Mon Sep 17 00:00:00 2001 From: Lydia Duncan Date: Fri, 8 Mar 2024 11:17:58 -0800 Subject: [PATCH] Recategorize the hyperbolic Math functions in the documentation This was pointed out by Damian - the hyperbolic Math functions were listed under the trigonometry section but really should have their own section ---- Signed-off-by: Lydia Duncan --- modules/standard/Math.chpl | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/modules/standard/Math.chpl b/modules/standard/Math.chpl index cf19f0f155c0..68e67cacebca 100644 --- a/modules/standard/Math.chpl +++ b/modules/standard/Math.chpl @@ -80,17 +80,22 @@ Constants Trigonometric Functions ^^^^^^^^^^^^^^^^^^^^^^^ :proc:`~Math.acos` -:proc:`~Math.acosh` :proc:`~Math.asin` -:proc:`~Math.asinh` :proc:`~Math.atan` :proc:`~Math.atan2` -:proc:`~Math.atanh` :proc:`~Math.cos` -:proc:`~Math.cosh` :proc:`~Math.sin` -:proc:`~Math.sinh` :proc:`~Math.tan` + +.. _math-hyperbolic: + +Hyperbolic Functions +^^^^^^^^^^^^^^^^^^^^ +:proc:`~Math.acosh` +:proc:`~Math.asinh` +:proc:`~Math.atanh` +:proc:`~Math.cosh` +:proc:`~Math.sinh` :proc:`~Math.tanh` .. _math-log: