summaryrefslogtreecommitdiff
path: root/lib/textui/text.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-01-01 19:33:03 -0700
committerLuke Shumaker <lukeshu@lukeshu.com>2023-01-01 22:42:08 -0700
commita06a7fb2d5bbf1ca5659de06fc9e975666bdcf9f (patch)
tree268aaa2725e4ad336412118779377177601c662b /lib/textui/text.go
parentc307e7048da3c02e1e540eab227def7fec7340cc (diff)
lint: Turn on gofumpt
All edits to .go files are made by `tools/bin/golangci-lint run --fix ./...`, not by me as a human.
Diffstat (limited to 'lib/textui/text.go')
-rw-r--r--lib/textui/text.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/textui/text.go b/lib/textui/text.go
index d6a80b3..615516d 100644
--- a/lib/textui/text.go
+++ b/lib/textui/text.go
@@ -72,9 +72,7 @@ type Portion[T constraints.Integer] struct {
N, D T
}
-var (
- _ fmt.Stringer = Portion[int]{}
-)
+var _ fmt.Stringer = Portion[int]{}
// String implements fmt.Stringer.
func (p Portion[T]) String() string {