From 26bfc1c443ce178fa009747b2cf83ad9876d5a6a Mon Sep 17 00:00:00 2001 From: Josh Yan Date: Wed, 15 May 2024 17:26:39 -0700 Subject: [PATCH] go fmt'd cmd.go --- cmd/cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/cmd.go b/cmd/cmd.go index a0ae86d3..8917022e 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -739,7 +739,7 @@ type displayResponseState struct { wordBuffer string } -// using runewidth instead of len (cus length is number of bytes, we wnat display length) +// using runewidth instead of len (cus length is number of bytes, we want display length) func displayResponse(content string, wordWrap bool, state *displayResponseState) { termWidth, _, _ := term.GetSize(int(os.Stdout.Fd())) if wordWrap && termWidth >= 10 {