We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0089ffe commit 1d76779Copy full SHA for 1d76779
doc/src/manual/parallel-computing.md
@@ -1086,7 +1086,7 @@ julia> for p in workers() # start tasks on the workers to process requests in pa
1086
1087
julia> @elapsed while n > 0 # print out results
1088
job_id, exec_time, where = take!(results)
1089
- println("$job_id finished in $(round(exec_time,2)) seconds on worker $where")
+ println("$job_id finished in $(round(exec_time; digits=2)) seconds on worker $where")
1090
n = n - 1
1091
end
1092
1 finished in 0.18 seconds on worker 4
0 commit comments