docs(useragent): copy correction

Christian Rocha and Copilot created

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

Change summary

providers/internal/httpheaders/httpheaders.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

providers/internal/httpheaders/httpheaders.go 🔗

@@ -11,11 +11,11 @@ func DefaultUserAgent(version string) string {
 
 // ResolveHeaders returns a new header map, with a User-Agent field.
 //
-// Setting the value via WithUserAgent() takes prescidence, however the user
+// Setting the value via WithUserAgent() takes precedence, however the user
 // agent can also be set via HTTP headers (i.e. WithHeaders()). Otherwise, the
 // default user agent will be used, i.e. Charm Fantasy/0.11.0.
 //
-// Also note that The input map is never mutated.
+// Also note that the input map is never mutated.
 func ResolveHeaders(headers map[string]string, explicitUA, defaultUA string) map[string]string {
 	out := make(map[string]string, len(headers)+1)
 	var uaKeys []string