Merge pull request #12 from royderegt/patch-1

Fix typo
This commit is contained in:
Francesc Verdugo 2023-09-05 17:05:05 +02:00 committed by GitHub
commit 665c853ad2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.