From 8f1c8b37f3e8bdab31f39dc1c801e67650770a02 Mon Sep 17 00:00:00 2001 From: Andrew Sisley Date: Wed, 7 Feb 2024 12:21:18 -0500 Subject: [PATCH] PR FIXUP - Document CollectionSources --- client/descriptions.go | 1 + 1 file changed, 1 insertion(+) diff --git a/client/descriptions.go b/client/descriptions.go index 4a1065735b..150190231a 100644 --- a/client/descriptions.go +++ b/client/descriptions.go @@ -113,6 +113,7 @@ func (col CollectionDescription) QuerySources() []*QuerySource { return sourcesOfType[*QuerySource](col) } +// CollectionSources returns all the Sources of type [CollectionSource] func (col CollectionDescription) CollectionSources() []*CollectionSource { return sourcesOfType[*CollectionSource](col) }