aboutsummaryrefslogtreecommitdiffstats
path: root/share.go
diff options
context:
space:
mode:
Diffstat (limited to 'share.go')
-rw-r--r--share.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/share.go b/share.go
index dc99e70..36b903b 100644
--- a/share.go
+++ b/share.go
@@ -11,7 +11,7 @@ package gui
// A sharedVal should be closed after use.
type sharedVal[T any] struct {
request chan<- chan T
- set chan<- T
+ set chan<- T
}
func newSharedVal[T any]() sharedVal[T] {