From: Oleksii Sholik Date: Sat, 14 Jan 2023 22:03:38 +0000 (+0000) Subject: net/http: fix missing word in ServeMux doc X-Git-Tag: go1.21rc1~1766 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5ad799ef8a8178f1f958206dc587b37d8406fbcb;p=gostls13.git net/http: fix missing word in ServeMux doc Change-Id: I324cedfcdfa1d7eac7be43dc89febb584359c8e3 GitHub-Last-Rev: 7724cd84f323b531215db0406f72481394d0b206 GitHub-Pull-Request: golang/go#57799 Reviewed-on: https://go-review.googlesource.com/c/go/+/462039 TryBot-Result: Gopher Robot Reviewed-by: Matthew Dempsky Reviewed-by: Damien Neil Auto-Submit: Damien Neil Run-TryBot: Damien Neil --- diff --git a/src/net/http/server.go b/src/net/http/server.go index a9ba911aa3..c15f0f58cb 100644 --- a/src/net/http/server.go +++ b/src/net/http/server.go @@ -2278,7 +2278,7 @@ func RedirectHandler(url string, code int) Handler { // Longer patterns take precedence over shorter ones, so that // if there are handlers registered for both "/images/" // and "/images/thumbnails/", the latter handler will be -// called for paths beginning "/images/thumbnails/" and the +// called for paths beginning with "/images/thumbnails/" and the // former will receive requests for any other paths in the // "/images/" subtree. //