From eb41a51e91596da3f1a92b2087d3d1b531760d46 Mon Sep 17 00:00:00 2001 From: Tony Rippy Date: Fri, 28 Jun 2024 13:00:59 -0400 Subject: [PATCH] Correct name of function in godocs Simple typo... This PR corrects the godoc for the `TupleColumnName` function, which started with "TupeColumnName" by mistake. --- helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers.go b/helpers.go index f2faee9e0..f91a08ac8 100644 --- a/helpers.go +++ b/helpers.go @@ -315,7 +315,7 @@ func (r *RowData) rowMap(m map[string]interface{}) { } } -// TupeColumnName will return the column name of a tuple value in a column named +// TupleColumnName will return the column name of a tuple value in a column named // c at index n. It should be used if a specific element within a tuple is needed // to be extracted from a map returned from SliceMap or MapScan. func TupleColumnName(c string, n int) string {