diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2024-08-16 15:49:14 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2024-08-16 15:49:14 -0400 |
| commit | ee1ecb5c17ebe98d18dc62390ecb6c09f648a52e (patch) | |
| tree | b8f1e9940cdda694625ff31ceab127fef513f182 /share.go | |
| parent | 101f952422b55a06206c63c9c0d9af3147112e92 (diff) | |
| download | gui-ee1ecb5c17ebe98d18dc62390ecb6c09f648a52e.zip | |
gofmt
Diffstat (limited to 'share.go')
| -rw-r--r-- | share.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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] { |