From b75c1aa07dc95388d32f99d32d118c31aea7f06e Mon Sep 17 00:00:00 2001 From: Naveen Gogineni Date: Mon, 5 Sep 2022 11:35:09 -0400 Subject: [PATCH] Run gofmt --- flag_bool.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/flag_bool.go b/flag_bool.go index 6dbfaed..dc32402 100644 --- a/flag_bool.go +++ b/flag_bool.go @@ -9,10 +9,11 @@ import ( // boolValue needs to implement the boolFlag internal interface in flag // to be able to capture bool fields and values -// type boolFlag interface { -// Value -// IsBoolFlag() bool -// } +// +// type boolFlag interface { +// Value +// IsBoolFlag() bool +// } type boolValue struct { destination *bool count *int