summaryrefslogtreecommitdiff
path: root/router.go
diff options
context:
space:
mode:
authortjpcc <tjp@ctrl-c.club>2023-05-01 21:43:52 -0600
committertjpcc <tjp@ctrl-c.club>2023-05-01 21:43:52 -0600
commitb2ab13893f68dca894b08e64a2c4fcd79b9b67fa (patch)
tree2987a3bd3f01663bccae57aea6f0316487614a15 /router.go
parentfbdcdb469812a1ee7fe40787b0353037aa9fa6ec (diff)
docstring fix
Diffstat (limited to 'router.go')
-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]