Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✏️ fix typo #2110

Merged
merged 1 commit into from Sep 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions router.go
Expand Up @@ -16,7 +16,7 @@ import (
"github.com/valyala/fasthttp"
)

// Router defines all router handle interface includes app and group router.
// Router defines all router handle interface, including app and group router.
type Router interface {
Use(args ...interface{}) Router

Expand All @@ -43,7 +43,7 @@ type Router interface {
Name(name string) Router
}

// Route is a struct that holds all metadata for each registered handler
// Route is a struct that holds all metadata for each registered handler.
type Route struct {
// Data for routing
pos uint32 // Position in stack -> important for the sort of the matched routes
Expand Down