From 2777ec7bdc61199b62a4a037e325733bc1f579bf Mon Sep 17 00:00:00 2001 From: Daniel Ponte Date: Tue, 4 Feb 2025 22:06:37 -0500 Subject: [PATCH] words --- pkg/incidents/incstore/store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/incidents/incstore/store.go b/pkg/incidents/incstore/store.go index 47ad24b..9113690 100644 --- a/pkg/incidents/incstore/store.go +++ b/pkg/incidents/incstore/store.go @@ -55,7 +55,7 @@ type Store interface { // CallIn returns whether an incident is in an call CallIn(ctx context.Context, inc uuid.UUID, call uuid.UUID) (bool, error) - // TGsIn returns the talkgroups referenced by an incident as a map, primary for rbac use. + // TGsIn returns the talkgroups referenced by an incident as a map, primarily for rbac use. TGsIn(ctx context.Context, inc uuid.UUID) (talkgroups.PresenceMap, error) }