From 37a7254a648925e086a2a5e5e6ebeb649b06097b Mon Sep 17 00:00:00 2001 From: Oliver <480930+rivo@users.noreply.github.com> Date: Tue, 13 Feb 2018 14:17:51 +0100 Subject: [PATCH] Some comment cleanup. --- table.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/table.go b/table.go index c39f3b8..c7231e5 100644 --- a/table.go +++ b/table.go @@ -295,8 +295,8 @@ func (t *Table) SetOffset(row, column int) *Table { return t } -// GetOffset returns current offset. -// Refer to SetOffset() for details. +// GetOffset returns the current row and column offset. This indicates how many +// rows and columns the table is scrolled down and to the right. func (t *Table) GetOffset() (row, column int) { return t.rowOffset, t.columnOffset }