Skip to content

Commit

Permalink
look more docs
Browse files Browse the repository at this point in the history
  • Loading branch information
teodorescuserban committed Jun 12, 2024
1 parent 9a7fc04 commit 9050f9b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion argsort.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@ func init() {
httpcaddyfile.RegisterHandlerDirective("argsort", parseCaddyfile)
}

// Argsort implements an HTTP handler that will optionally lowercase and sort the query arguments.
// Argsort sort the query arguments after optionally lowercasing them.
//
// Syntax:
//
// argsort [lowercase]
type Argsort struct {
// Lowercase the query arguments before sorting them.
Lowercase bool `json:"lowercase,omitempty"`
}

Expand Down

0 comments on commit 9050f9b

Please sign in to comment.