From fb0d050272995e064ad279417a72a2a91ae73356 Mon Sep 17 00:00:00 2001 From: T045TN1NJ4 Date: Sat, 8 Mar 2025 15:28:12 -0500 Subject: [PATCH] Update explicit-accuracy-for-math-round.md --- docs/explicit-accuracy-for-math-round.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/explicit-accuracy-for-math-round.md b/docs/explicit-accuracy-for-math-round.md index 8603b7c..2d76e58 100644 --- a/docs/explicit-accuracy-for-math-round.md +++ b/docs/explicit-accuracy-for-math-round.md @@ -1,7 +1,7 @@ # Explicit degree of accuracy input for math.round ## Summary -This RFC proposes introducing a second parameter to `math.round` to allow users to declare a degree of accuracy to round numbers to. +This RFC proposes introducing a second parameter to `math.round` to allow users to specify a degree of accuracy to round numbers to. ```luau print( math.round(3.1415, 2) ) -- Output: 3.14 ```