We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b882187 commit 46cc311Copy full SHA for 46cc311
app/os.go
@@ -176,7 +176,7 @@ type context interface {
176
// basicDriver is the subset of [driver] that may be called even after
177
// a window is destroyed.
178
type basicDriver interface {
179
- // Event blocks until an even is available and returns it.
+ // Event blocks until an event is available and returns it.
180
Event() event.Event
181
// Invalidate requests a FrameEvent.
182
Invalidate()
app/window.go
@@ -93,7 +93,7 @@ type Window struct {
93
// coalesced tracks the most recent events waiting to be delivered
94
// to the client.
95
coalesced eventSummary
96
- // frame tracks the most recently frame event.
+ // frame tracks the most recent frame event.
97
lastFrame struct {
98
sync bool
99
size image.Point
0 commit comments