From 5b22eff32f8fc1d77c5908fd84f1f25decc0a171 Mon Sep 17 00:00:00 2001 From: Auto Differentiation Dev Team Date: Wed, 10 Jan 2024 09:57:12 +0000 Subject: [PATCH] fixes heading level for hypot --- docs/ref/math.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/math.md b/docs/ref/math.md index 847be4a8..abf03716 100644 --- a/docs/ref/math.md +++ b/docs/ref/math.md @@ -201,7 +201,7 @@ For derivatives, we therefore consider them both the same and calculate derivati `#!c++ T cbrt(T x)` computes the cubic root of `x`. -### `hypot` +#### `hypot` `#!c++ T hypot(T x, T y)` computes `sqrt(x*x + y*y)` without undue overflow or underflow at intermediate stages of the computation.