From fc9747211cfaf244bd1c591b4e3452bc38e1cea2 Mon Sep 17 00:00:00 2001
From: mipnw <36454085+mipnw@users.noreply.github.com>
Date: Tue, 25 Jun 2024 11:12:07 -0700
Subject: [PATCH] [chore] Fix broken URL in a comment (#33720)

**Description:** Fix a broken URL in a comment
The wiki on how to track tool dependencies for a module has moved.
---
 internal/tools/tools.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/internal/tools/tools.go b/internal/tools/tools.go
index a941c9512234..58d3477ed5b2 100644
--- a/internal/tools/tools.go
+++ b/internal/tools/tools.go
@@ -6,7 +6,7 @@
 package tools // import "github.com/open-telemetry/opentelemetry-collector-contrib/internal/tools"
 
 // This file follows the recommendation at
-// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
+// https://go.dev/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
 // on how to pin tooling dependencies to a go.mod file.
 // This ensures that all systems use the same version of tools in addition to regular dependencies.