From 92543a7cb56acab8f35670aa13b284e376ca199c Mon Sep 17 00:00:00 2001
From: "David H. Bronke" <whitelynx@users.noreply.github.com>
Date: Sun, 24 Jan 2021 09:51:25 -0500
Subject: [PATCH] fix(feature_ps2_mouse): fix Scroll Button example (#11669)

Corrected macro in Scroll Button example so it compiles.
---
 docs/feature_ps2_mouse.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/feature_ps2_mouse.md b/docs/feature_ps2_mouse.md
index e549810855..8e84e22d8a 100644
--- a/docs/feature_ps2_mouse.md
+++ b/docs/feature_ps2_mouse.md
@@ -206,7 +206,7 @@ It's possible to enable a "scroll button/s" that when pressed will cause the mou
 To enable the feature, you must set a scroll button mask as follows:
 
 ```c
-#define PS2_MOUSE_SCROLL_BTN_MASK (1<<PS2_MOUSE_BUTTON_MIDDLE) /* Default */
+#define PS2_MOUSE_SCROLL_BTN_MASK (1<<PS2_MOUSE_BTN_MIDDLE) /* Default */
 ```
 
 To disable the scroll button feature: