Fix Grammar and Typo in Comments (#5284)

This commit is contained in:
Gregor Fischer
2025-11-20 14:26:50 +01:00
committed by GitHub
parent 29b65e12c1
commit 72dd970969
3 changed files with 4 additions and 4 deletions

View File

@@ -19,7 +19,7 @@ const (
var (
// ErrInvalidMethod is an error that indicates not a valid http method.
ErrInvalidMethod = errors.New("not a valid http method")
// ErrInvalidPath is an error that indicates path is not start with /.
// ErrInvalidPath is an error that indicates path does not start with /.
ErrInvalidPath = errors.New("path must begin with '/'")
)