summaryrefslogtreecommitdiffstats
path: root/docs/dev
diff options
context:
space:
mode:
authorIkko Eltociear Ashimine <eltociear@gmail.com>2024-03-26 00:59:45 +0900
committerStefan Haller <stefan@haller-berlin.de>2024-03-26 23:08:51 +0100
commit57786fbb1fb75dd3200cf793061f2de81d2ac300 (patch)
treefbebef68f0a0c30e4701b065469ee9bc4425e700 /docs/dev
parente295ccefabc63a6fcca4468da2b0740a98a24e75 (diff)
Update Busy.md
enqueing -> enqueueing
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/Busy.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/Busy.md b/docs/dev/Busy.md
index 309f2d25d..17c5dc80b 100644
--- a/docs/dev/Busy.md
+++ b/docs/dev/Busy.md
@@ -57,7 +57,7 @@ go utils.Safe(f)
Where `utils.Safe` is a helper function that ensures we clean up the gui if the goroutine panics.
-### Programmatically enqueing a UI event
+### Programmatically enqueueing a UI event
This is invoked with `self.c.OnUIThread(f)`. Internally, it creates a task before enqueuing the function as an event (including the task in the event struct) and once that event is processed by the event queue (and any other pending events are processed) the task is removed from the map by calling `task.Done()`.