Skip to content

Commit f675a51

Browse files
can
1 parent 8c5f6ab commit f675a51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/multiprocessing/pool_args.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def single_arg(arg):
5151
except Exception as e:
5252
print(e)
5353

54-
# Pool.apply con accept positional arguments, key word arguments or both
54+
# Pool.apply can accept positional arguments, key word arguments or both
5555
pool.apply(multiple_args, args=(1, 2, 3))
5656
pool.apply(multiple_args, kwds={'arg1': 1, 'arg2': 2, 'arg3': 3})
5757
pool.apply(multiple_args, args=(1, 2), kwds={'arg3': 3})

0 commit comments

Comments
 (0)