From 0dbd6befa03a80e010ee581ff965bce7d205a3f6 Mon Sep 17 00:00:00 2001 From: lixianjing Date: Sat, 30 Nov 2024 17:39:48 +0800 Subject: [PATCH] fix docs --- docs/how_to_use_multi_touch_event.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how_to_use_multi_touch_event.md b/docs/how_to_use_multi_touch_event.md index fe27ad159..97ef939c3 100644 --- a/docs/how_to_use_multi_touch_event.md +++ b/docs/how_to_use_multi_touch_event.md @@ -76,7 +76,7 @@ x/y 在 0-1 之间,表示与屏幕宽/高度的比例,这个和 SDL 传上 ## 三,注册多点触摸事件 -触摸事件只放给当前的窗口,所以需要在窗口上注册触摸事件。 +触摸事件只发给当前的窗口,所以需要在窗口上注册触摸事件。 ```c widget_on(win, EVT_TOUCH_DOWN, on_touch_down, win);