Skip to content

Commit

Permalink
Typo in example code inside MPI-C.md (#287)
Browse files Browse the repository at this point in the history
  • Loading branch information
SavaLione committed Feb 28, 2024
1 parent 1d41e7b commit 09ca943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/programming/MPI-C.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ which will initialize the mpi communicator:
#include <mpi.h>
int main(int argc, char** argv){
int process_Rank, size_Of_Cluster
int process_Rank, size_Of_Cluster;
MPI_Init(&argc, &argv);
Expand Down

0 comments on commit 09ca943

Please sign in to comment.