From b35b621bb05d33d8298826e22174464c923d1db3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= <765740+giordano@users.noreply.github.com> Date: Thu, 19 Sep 2024 00:23:26 +0100 Subject: [PATCH] Fix docstring of `@everywhere` The random extra spaces screw up formatting: https://docs.julialang.org/en/v1.10.5/stdlib/Distributed/#Distributed.@everywhere --- src/macros.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/macros.jl b/src/macros.jl index a767c7a..a4fec31 100644 --- a/src/macros.jl +++ b/src/macros.jl @@ -185,9 +185,9 @@ processes to have execute the expression. Similar to calling `remotecall_eval(Main, procs, expr)`, but with two extra features: - - `using` and `import` statements run on the calling process first, to ensure - packages are precompiled. - - The current source file path used by `include` is propagated to other processes. +- `using` and `import` statements run on the calling process first, to ensure + packages are precompiled. +- The current source file path used by `include` is propagated to other processes. """ macro everywhere(ex) procs = GlobalRef(@__MODULE__, :procs)