From 8161605f1b76d5978cf89deeb2b82cd6121c1c88 Mon Sep 17 00:00:00 2001 From: Torben Giesselmann Date: Fri, 3 Mar 2023 19:07:57 -0800 Subject: [PATCH] snapshot_group: Fix typo --- internal/restic/snapshot_group.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/restic/snapshot_group.go b/internal/restic/snapshot_group.go index c3f3307f6..9efae2ff6 100644 --- a/internal/restic/snapshot_group.go +++ b/internal/restic/snapshot_group.go @@ -68,7 +68,7 @@ type SnapshotGroupKey struct { } // GroupSnapshots takes a list of snapshots and a grouping criteria and creates -// a group list of snapshots. +// a grouped list of snapshots. func GroupSnapshots(snapshots Snapshots, groupBy SnapshotGroupByOptions) (map[string]Snapshots, bool, error) { // group by hostname and dirs snapshotGroups := make(map[string]Snapshots)