From fa7598cd11e6160d9abaae48edea20250f5de7f9 Mon Sep 17 00:00:00 2001 From: Julien Riou Date: Fri, 20 Jan 2023 11:19:48 +0100 Subject: [PATCH] chore: Fix typo in terminator test comment Signed-off-by: Julien Riou --- terminator/terminator_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminator/terminator_test.go b/terminator/terminator_test.go index 230425e..dc54feb 100644 --- a/terminator/terminator_test.go +++ b/terminator/terminator_test.go @@ -175,7 +175,7 @@ func TestFilterDatabases(t *testing.T) { } } -// ListDatabases extract usernames from a list of sessions +// ListDatabases extract databases from a list of sessions func ListDatabases(sessions []*base.Session) (databases []string) { for _, session := range sessions { databases = append(databases, session.Db)