From b263cc4b2ef12ae013526a3d8808b6716146586a Mon Sep 17 00:00:00 2001 From: Psychpsyo <60073468+Psychpsyo@users.noreply.github.com> Date: Thu, 28 Nov 2024 00:12:20 +0100 Subject: [PATCH] Improve the definition of atan2() (#60493) --- src/lib/es5.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/es5.d.ts b/src/lib/es5.d.ts index ab484e1812e..963f6ad24f1 100644 --- a/src/lib/es5.d.ts +++ b/src/lib/es5.d.ts @@ -678,7 +678,7 @@ interface Math { */ atan(x: number): number; /** - * Returns the angle (in radians) from the X axis to a point. + * Returns the angle (in radians) between the X axis and the line going through both the origin and the given point. * @param y A numeric expression representing the cartesian y-coordinate. * @param x A numeric expression representing the cartesian x-coordinate. */