]> Cypherpunks repositories - gostls13.git/commitdiff
doc: fix urlmaxqueryparams typos
authorMichael Pratt <mpratt@google.com>
Fri, 16 Jan 2026 17:20:39 +0000 (12:20 -0500)
committerGopher Robot <gobot@golang.org>
Fri, 16 Jan 2026 17:40:45 +0000 (09:40 -0800)
Updates #77101.

Change-Id: I6a6a636cd58e1bd01943066368cb1424db6c6a92
Reviewed-on: https://go-review.googlesource.com/c/go/+/737040
Reviewed-by: Damien Neil <dneil@google.com>
Auto-Submit: Michael Pratt <mpratt@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>

doc/godebug.md

index 184e161c40ab210acdfa404cd623b88699abae5f..90ed63a01ad4588e668ce27a8e235477835e036e 100644 (file)
@@ -167,8 +167,8 @@ Go 1.26 added a new `urlmaxqueryparams` setting that controls the maximum number
 of query parameters that net/url will accept when parsing a URL-encoded query string.
 If the number of parameters exceeds the number set in `urlmaxqueryparams`,
 parsing will fail early. The default value is `urlmaxqueryparams=10000`.
-Setting `urlmaxqueryparams=0`bles the limit. To avoid denial of service attacks,
-this setting and default was backported to Go 1.25.4 and Go 1.24.10.
+Setting `urlmaxqueryparams=0` disables the limit. To avoid denial of service
+attacks, this setting and default was backported to Go 1.25.6 and Go 1.24.12.
 
 Go 1.26 added a new `urlstrictcolons` setting that controls whether `net/url.Parse`
 allows malformed hostnames containing colons outside of a bracketed IPv6 address.