Skip to content

Commit 09b9b87

Browse files
Update cleaner.go
Co-authored-by: Sarah Vessels <[email protected]>
1 parent e6281db commit 09b9b87

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

cmd/generate/cleaner.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ func SplitLines(text string) []string {
3333

3434
// Unbracket removes leading and trailing square brackets.
3535
func Unbracket(text string) string {
36-
// Remove leading and trailing square brackets
3736
if strings.HasPrefix(text, "[") && strings.HasSuffix(text, "]") {
3837
text = strings.TrimPrefix(text, "[")
3938
text = strings.TrimSuffix(text, "]")

0 commit comments

Comments
 (0)