From 8dac7ca46c095d8163e2ae3b3f55ddcc568148d2 Mon Sep 17 00:00:00 2001 From: Jason Sturges Date: Tue, 20 Dec 2022 22:44:09 -0600 Subject: [PATCH] Update progress.md Errata: `Maximium` => `Maximum` Signed-off-by: Jason Sturges --- docs/data/material/components/progress/progress.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data/material/components/progress/progress.md b/docs/data/material/components/progress/progress.md index ef5b5f22b8cf0a..4e1f726723ac16 100644 --- a/docs/data/material/components/progress/progress.md +++ b/docs/data/material/components/progress/progress.md @@ -69,7 +69,7 @@ The progress components accept a value in the range 0 - 100. This simplifies thi ```jsx // MIN = Minimum expected value -// MAX = Maximium expected value +// MAX = Maximum expected value // Function to normalise the values (MIN / MAX could be integrated) const normalise = (value) => ((value - MIN) * 100) / (MAX - MIN);