From 5ad799ef8a8178f1f958206dc587b37d8406fbcb Mon Sep 17 00:00:00 2001 From: Oleksii Sholik Date: Sat, 14 Jan 2023 22:03:38 +0000 Subject: [PATCH] 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 --- src/net/http/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. // -- 2.48.1