diff --git a/docs/mouse.rst b/docs/mouse.rst index 4a35b2a..cca65eb 100644 --- a/docs/mouse.rst +++ b/docs/mouse.rst @@ -139,7 +139,7 @@ For example: >>> pyautogui.moveTo(100, 100, 2, pyautogui.easeInQuad) # start slow, end fast >>> pyautogui.moveTo(100, 100, 2, pyautogui.easeOutQuad) # start fast, end slow - >>> pyautogui.moveTo(100, 100, 2, pyautogui.easeInOutQuad) # start and end fast, slow in middle + >>> pyautogui.moveTo(100, 100, 2, pyautogui.easeInOutQuad) # start and end slow, fast in middle >>> pyautogui.moveTo(100, 100, 2, pyautogui.easeInBounce) # bounce at the end >>> pyautogui.moveTo(100, 100, 2, pyautogui.easeInElastic) # rubber band at the end