Skip to content

Commit 16fc559

Browse files
authoredFeb 19, 2024
fix: doc typo (#769)
1 parent 1323ede commit 16fc559

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎middleware.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func parseRequestURL(c *Client, r *Request) error {
5858
defer releaseBuffer(buf)
5959
// search for the next or first opened curly bracket
6060
for curr := strings.Index(r.URL, "{"); curr > prev; curr = prev + strings.Index(r.URL[prev:], "{") {
61-
// write everything form the previous position up to the current
61+
// write everything from the previous position up to the current
6262
if curr > prev {
6363
buf.WriteString(r.URL[prev:curr])
6464
}

0 commit comments

Comments
 (0)