We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d06ee3 commit b94b7a1Copy full SHA for b94b7a1
content/docs/started/goroutines.md
@@ -14,8 +14,8 @@ have a little more work to do to get the same safety and performance as internal
14
## Updating from a goroutine
15
16
Any time your app invokes Fyne APIs from a goroutine your code created, you should use the
17
-`fyne.Do` function to tell Fyne that you want to queue updates to the rendered application,
18
-for example with a `canvas.Text` called `output` you may want to update the time each second.
+`fyne.Do` function. This tells Fyne that you want to queue changes to the application interface.
+For example with a `canvas.Text` called `output` you may want to update the time each second.
19
The key code there would be:
20
21
```go
0 commit comments