Skip to content

Commit f936318

Browse files
committed
Updated from review@
1 parent 20afcd3 commit f936318

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api/v2.6/upgrading.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Open your `go.mod` file and alter the the `require` line to use version `v2.6.0`
2020
or you can execute the following command inside the directory:
2121

2222
```bash
23-
go get fyne.io/fyne/[email protected]
23+
go get fyne.io/fyne/[email protected]-alpha1
2424
```
2525

2626
The next time you build or run your app it will be using the 2.6 API,
@@ -54,7 +54,7 @@ be required for ensuring widget data safety any more).
5454

5555
**Background access to Fyne APIs must be performed through fyne.Do[AndWait] functions**
5656

57-
Because all Fyne now happens on a single thread (for speed and safety) apps using goroutines need to change.
57+
Because all Fyne callbacks now happen on a single thread (for speed and safety) apps using goroutines need to be updated.
5858
If your app launches a goroutine (using the `go` keyword) any Fyne APIs called from within the
5959
new context must be wrapped in a new accessor.
6060

0 commit comments

Comments
 (0)