summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--router.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/router.go b/router.go
index 6d0252f..abfee13 100644
--- a/router.go
+++ b/router.go
@@ -22,7 +22,7 @@ import (
// full path must match a pattern. If you want to only match a prefix of the
// path you can end the pattern with a *remainder segment.
//
-// The zero value is a usable Router which will fail to match any requst path.
+// The zero value is a usable Router which will fail to match any request path.
type Router struct {
tree internal.PathTree[Handler]