Skip to content

Commit

Permalink
godoc format
Browse files Browse the repository at this point in the history
  • Loading branch information
M4tteoP committed Nov 28, 2023
1 parent 057f3cd commit 6ed85e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/url/url.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func ParseQuery(query string, separator byte) map[string][]string {
return doParseQuery(query, separator, urlUnescape)
}

// Sibling of ParseQuery, but without performing URL unescape of keys and values.
// ParseQueryWithoutUnescape is a sibling of ParseQuery, but without performing URL unescape of keys and values.
func ParseQueryWithoutUnescape(query string, separator byte) map[string][]string {
return doParseQuery(query, separator, noUrlUnescape)
}
Expand Down

0 comments on commit 6ed85e9

Please sign in to comment.