We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fef4d7e commit 1fe5588Copy full SHA for 1fe5588
pkg/jsonutils/jsonutils.go
@@ -133,7 +133,7 @@ func formatToolsList(tools any) (string, error) {
133
descColWidth := termWidth - nameColWidth - 5 // Leave some margin
134
135
if descColWidth < 10 {
136
- descColWidth = max(10, termWidth - nameColWidth - 5) // Adaptive minimum width
+ descColWidth = max(10, termWidth-nameColWidth-5) // Adaptive minimum width
137
}
138
139
for _, t := range toolsSlice {
0 commit comments