diff options
author | tjpcc <tjp@ctrl-c.club> | 2023-05-01 21:43:52 -0600 |
---|---|---|
committer | tjpcc <tjp@ctrl-c.club> | 2023-05-01 21:43:52 -0600 |
commit | b2ab13893f68dca894b08e64a2c4fcd79b9b67fa (patch) | |
tree | 2987a3bd3f01663bccae57aea6f0316487614a15 | |
parent | fbdcdb469812a1ee7fe40787b0353037aa9fa6ec (diff) |
docstring fix
-rw-r--r-- | router.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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] |