Skip to content

Commit

Permalink
Fixes #36 - finish incomplete sentence
Browse files Browse the repository at this point in the history
  • Loading branch information
steve-crouch committed Jul 5, 2024
1 parent a8c76c7 commit 287807c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _episodes/04-point-to-point-communication.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ int MPI_Recv(
| `source`: | The number of the rank sending the data |
| `tag`: | A message tag (integer), which must either match the tag in the sent message, or if `MPI_ANY_TAG` is specified, a message with any tag will be accepted |
| `communicator`: | The communicator (we have used `MPI_COMM_WORLD` in earlier examples) |
| `status`: | A pointer for writing the exit status of the MPI command, indicating |
| `status`: | A pointer for writing the exit status of the MPI command, indicating whether the operation succeeded or failed |
{: .show-c}

Continuing our example, to receive our message we could write:
Expand Down

0 comments on commit 287807c

Please sign in to comment.