From eea64bdc59cad713492e2702782f2a0c44295349 Mon Sep 17 00:00:00 2001 From: Alexander Dimitrov Date: Wed, 27 Sep 2023 18:29:32 +0200 Subject: [PATCH] docs(material/slider): Page Up/Down increase value but not by 10 steps (#27854) Change the documentation so it's clearer that the Page Up/Down buttons of the slider component increase/decrease the value of the slider by 10% (of the max value), rather than 10 steps as it was described previously. Fixes #27402. (cherry picked from commit 7369dfadcf38d05d4f93a8fa8308ed7ccb55f2a9) --- src/material/slider/slider.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/material/slider/slider.md b/src/material/slider/slider.md index d00a6595f36a..240d44b0c69b 100644 --- a/src/material/slider/slider.md +++ b/src/material/slider/slider.md @@ -68,8 +68,8 @@ The slider has the following keyboard bindings: | Up arrow | Increment the slider value by one step. | | Left arrow | Decrement the slider value by one step (increments in RTL). | | Down arrow | Decrement the slider value by one step. | -| Page up | Increment the slider value by 10 steps. | -| Page down | Decrement the slider value by 10 steps. | +| Page up | Increment the slider value by 10% (of the max value). | +| Page down | Decrement the slider value by 10% (of the max value). | | End | Set the value to the maximum possible. | | Home | Set the value to the minimum possible. |