Skip to content

Commit a7fc4a9

Browse files
committed
fix typo
1 parent 252b146 commit a7fc4a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

filter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ func filterCookieSeq(ctx context.Context, cookies CookieSeq, filters ...Filter)
9898
func filterCookieSlice[S ~[]*T, T Cookie | http.Cookie](ctx context.Context, cookies S, filters ...Filter) CookieSeq {
9999
return func(yield func(*Cookie, error) bool) {
100100
if len(cookies) < 1 {
101-
_ = yield(nil, errors.New(`cookie slice of lenght 0`))
101+
_ = yield(nil, errors.New(`cookie slice of length 0`))
102102
return
103103
}
104104
switch cookiesTyped := any(cookies).(type) {

0 commit comments

Comments
 (0)