aboutsummaryrefslogtreecommitdiffstats
path: root/share.go
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2024-08-16 15:49:14 -0400
committerSam Anthony <sam@samanthony.xyz>2024-08-16 15:49:14 -0400
commitee1ecb5c17ebe98d18dc62390ecb6c09f648a52e (patch)
treeb8f1e9940cdda694625ff31ceab127fef513f182 /share.go
parent101f952422b55a06206c63c9c0d9af3147112e92 (diff)
downloadgui-ee1ecb5c17ebe98d18dc62390ecb6c09f648a52e.zip
gofmt
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] {