From b06e1e199d9c7d325a49f2eb02da84a1d4b9bd1c Mon Sep 17 00:00:00 2001 From: ierhon <138611090+ierho@users.noreply.github.com> Date: Wed, 27 Mar 2024 19:15:13 +0500 Subject: [PATCH] Fix mistake in easeInOut comment The comment in the docs said that easeInOutQuad is slow in the middle, it's actually fast in the middle and slow at start and end. --- docs/mouse.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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