Skip to content

Commit 8fd7c61

Browse files
committed
style: keep line width in 100.
1 parent 83e2efd commit 8fd7c61

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

async.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,8 @@ func makeFuncIn(ft reflect.Type, ctx context.Context, params []any) []reflect.Va
162162
// check the parameter's type is whether nil-able or not when the value is nil
163163
kind := it.Kind()
164164
switch kind {
165-
case reflect.Chan, reflect.Map, reflect.Pointer, reflect.UnsafePointer, reflect.Interface, reflect.Slice:
165+
case reflect.Chan, reflect.Map, reflect.Pointer, reflect.UnsafePointer,
166+
reflect.Interface, reflect.Slice:
166167
vv = reflect.Zero(it)
167168
default:
168169
panic(ErrUnmatchedParam)

0 commit comments

Comments
 (0)