Skip to content

Commit 46a25f7

Browse files
committed
Fixed Comment
1 parent 4538502 commit 46a25f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gdpr/vendorlist-fetching.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ func makeVendorListNotFoundError(vendorListVersion uint16) error {
8888
// preloadCache saves all the known versions of the vendor list for future use.
8989
func preloadCache(ctx context.Context, client *http.Client, urlMaker func(uint16) string, saver saveVendors) {
9090
latestVersion := saveOne(ctx, client, urlMaker(0), saver)
91-
firstVersion := uint16(2) // The GVL for TCF2 has no vendors defined and is very unlikely to be used. Don't load it.
91+
firstVersion := uint16(2) // The first version of the GVL for TCF2 has no vendors defined and is very unlikely to be used. Don't preload it.
9292

9393
for i := firstVersion; i < latestVersion; i++ {
9494
saveOne(ctx, client, urlMaker(i), saver)

0 commit comments

Comments
 (0)