From 8b54ae4ef12771de5daba51454d18fe1d0f90830 Mon Sep 17 00:00:00 2001 From: Oliver Date: Tue, 10 Dec 2024 15:18:26 -0800 Subject: [PATCH] Small wording change. --- internal/cmd/request.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/request.go b/internal/cmd/request.go index fc938ea3..147962bf 100644 --- a/internal/cmd/request.go +++ b/internal/cmd/request.go @@ -169,7 +169,7 @@ func ConvertAPIResponseToTable(response core.APIResponse) (string, bool) { // Attempt to convert a []may[string]any into a TSV table. // Headers are taken from the keys of the first entry. -// Rows are the value's of each entry in the slice. +// Rows are the value's of each entry in the list. // Return the table and true on a successful conversion or false if there is an issue converting. func convertEntriesToTable(entries []any) (string, bool) { if len(entries) == 0 {