diff --git a/documentation/docs/api/use-hotkeys.mdx b/documentation/docs/api/use-hotkeys.mdx index a0646792..bb6b72cc 100644 --- a/documentation/docs/api/use-hotkeys.mdx +++ b/documentation/docs/api/use-hotkeys.mdx @@ -85,7 +85,7 @@ useHotkeys(['ctrl+a', 'shift+b', 'r', 'f'], (_, handler) => { switch (handler.keys.join('')) { case 'a': alert('You pressed ctrl+a!'); break; - case 'b': alert('You pressed ctrl+b!'); + case 'b': alert('You pressed shift+b!'); break; case 'r': alert('You pressed r!'); break;