From 2a7d47a495be9222d8d2dd73444e1853eb1d4cfc Mon Sep 17 00:00:00 2001 From: Mike Nolta Date: Tue, 29 Jan 2019 15:39:09 -0500 Subject: [PATCH] fix typo in README.md example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3bcb6fed1..d70a97cc9 100644 --- a/README.md +++ b/README.md @@ -151,7 +151,7 @@ To execute code with MPI calls on all workers, use `@mpi_do`. `@mpi_do manager expr` executes `expr` on all processes that are part of `manager` For example: -`@mpi_do manager (comm=MPI.COMM_WORLD; println("Hello world, I am $(MPI.Comm_rank(comm)) of $(MPI.Comm_size(comm))")` +`@mpi_do manager (comm=MPI.COMM_WORLD; println("Hello world, I am $(MPI.Comm_rank(comm)) of $(MPI.Comm_size(comm))"))` executes on all mpi workers belonging to `manager` only `examples/05-juliacman.jl` is a simple example of calling MPI functions on all workers