From 9b152ae560b66f2ecfa7e966207b9a3cbcd5e414 Mon Sep 17 00:00:00 2001 From: Nik Date: Sun, 22 Oct 2023 21:25:14 +0200 Subject: [PATCH] includes/std: Fixed doc comment of std::math::atan2 --- includes/std/math.pat | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/std/math.pat b/includes/std/math.pat index b4bf9f3..1ec54a8 100644 --- a/includes/std/math.pat +++ b/includes/std/math.pat @@ -262,7 +262,8 @@ namespace std::math { /** Calculates the arc tangent of `value`. - @param value Value + @param y Value representing the proportion of the y-coordinate + @param x Value representing the proportion of the x-coordinate. @return Arc tangent of `value` in radians between `-pi` and `pi` */ fn atan2(auto y, auto x) { return builtin::std::math::atan2(y, x); };