From a229a79ae2a44a87168e5b0b4506867e6ec722b8 Mon Sep 17 00:00:00 2001 From: x87 Date: Mon, 1 Nov 2021 13:33:17 -0400 Subject: [PATCH] Update using-math.md --- using-math.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/using-math.md b/using-math.md index f8fd7f5..1f9ba9e 100644 --- a/using-math.md +++ b/using-math.md @@ -55,6 +55,6 @@ Then the game-specific commands go. Following the naming convention, each method ```js var x = Math.abs(-1); // x = 1 - var f = Math.ConvertMetresToFeet(10) // f = 32 + var f = Math.ConvertMetersToFeet(10) // f = 32 var pi = Math.floor(Math.PI) // pi = 3 ```