From 938fdaf2d11317abb57784b80c6fe8c21844abbd Mon Sep 17 00:00:00 2001 From: Richie Bendall <richiebendall@gmail.com> Date: Sun, 21 Jul 2024 20:57:52 +1200 Subject: [PATCH] Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 7d0dd43..959e134 100644 --- a/readme.md +++ b/readme.md @@ -89,7 +89,7 @@ Math.clamp(10, 5, 0); //=> 10 ``` -It supports `null`/`undefined`/`-Infinity`/`-Infinity` to specify when there is no upper or lower bound: +It supports `null`/`undefined`/`-Infinity`/`Infinity` to specify when there is no upper or lower bound: ```js Math.clamp(5, 0, null);