From bf5af6bd075a646fa890666a745ab7e666d0bde1 Mon Sep 17 00:00:00 2001 From: "Randall C. O'Reilly" Date: Mon, 23 Dec 2024 00:22:05 -0800 Subject: [PATCH] tensorcore.Table --- core/list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/list.go b/core/list.go index 4f5b6f1399..ca80541756 100644 --- a/core/list.go +++ b/core/list.go @@ -90,7 +90,7 @@ type Lister interface { // SliceIndex returns the logical slice index: si = i + StartIndex, // the actual value index vi into the slice value (typically = si), // which can be different if there is an index indirection as in - // tensorcore table.Table), and a bool that is true if the + // tensorcore.Table), and a bool that is true if the // index is beyond the available data and is thus invisible, // given the row index provided. SliceIndex(i int) (si, vi int, invis bool)