From bc7f87be14be41f2e408e92f86f2aad2f17d903f Mon Sep 17 00:00:00 2001 From: Roy <46519674+royderegt@users.noreply.github.com> Date: Tue, 5 Sep 2023 16:44:00 +0200 Subject: [PATCH] Fix typo --- docs/src/getting_started_with_julia.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/getting_started_with_julia.md b/docs/src/getting_started_with_julia.md index fbc2687..f51cdbc 100644 --- a/docs/src/getting_started_with_julia.md +++ b/docs/src/getting_started_with_julia.md @@ -190,7 +190,7 @@ As you can see from this example, one can access MPI from Julia in a clean way, Now, run the file from the REPL ```julia -julia> incude("hello_mpi.jl") +julia> include("hello_mpi.jl") ``` It probably didn't work, right? Read the error message and note that the MPI package needs to be installed to run this code. @@ -216,7 +216,7 @@ Congrats, you have installed MPI! To check that the package was installed properly, exit package mode by pressing the backspace key several times, and run it again ```julia -julia> incude("hello_mpi.jl") +julia> include("hello_mpi.jl") ``` Now, it should work, but you probably get output from a single MPI rank only.