From 68a5a4eb56b42d578f5a47b6280ef7f6271540ce Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Thu, 3 Aug 2023 15:41:41 +1000 Subject: [PATCH] Fixed header levels - you need to be pedantic when writing docs for other people --- getting-started/math.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/getting-started/math.md b/getting-started/math.md index b3c5c7b..6a45e47 100644 --- a/getting-started/math.md +++ b/getting-started/math.md @@ -50,61 +50,61 @@ This function returns the length of the hypotenuse, assuming `x` and `y` are the ## Defined Trigonometric Functions -## toRadians(d): float +### toRadians(d): float This function converts `d` into radians. -## toDegrees(r): float +### toDegrees(r): float This function converts `r` into degrees. -## sin(x): float +### sin(x): float This function returns the sine of `x`. -## cos(x): float +### cos(x): float This function returns the cosine of `x`. -## tan(x): float +### tan(x): float This function returns the tangent of `x`. -## asin(x): float +### asin(x): float This function returns the arc sine of `x`. -## acos(x): float +### acos(x): float This function returns the arc cosine of `x`. -## atan(x): float +### atan(x): float This function returns the arc tangent of `x`. ## Defined Hyperbolic Functions -## sinh(x): float +### sinh(x): float This function returns the hyperbolic sine of `x` -## cosh(x): float +### cosh(x): float This function returns the hyperbolic cosine of `x` -## tanh(x): float +### tanh(x): float This function returns the hyperbolic tangent of `x` -## asinh(x): float +### asinh(x): float This function returns the inverse hyperbolic sine of `x` -## acosh(x): float +### acosh(x): float This function returns the inverse cosine sine of `x` -## atanh(x): float +### atanh(x): float This function returns the inverse tangent sine of `x`