Skip to content

Commit 5ec17fb

Browse files
committed
fix the arg passing
1 parent ca92ca8 commit 5ec17fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

go.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func GoWithArgs(concurrentCode func(args ...interface{}), args ...interface{}) {
3232
}()
3333

3434
if concurrentCode != nil {
35-
concurrentCode(args)
35+
concurrentCode(args...)
3636
}
3737
}()
3838
}

0 commit comments

Comments
 (0)