Skip to content

Commit

Permalink
man pages: fix typos in some partitioned API man pages
Browse files Browse the repository at this point in the history
Thanks to @jprotze for notifying us of the issue.

Signed-off-by: Jeff Squyres <[email protected]>
  • Loading branch information
jsquyres committed Aug 13, 2024
1 parent 57f2404 commit 5bf2745
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/man-openmpi/man3/MPI_Parrived.3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ C Syntax
#include <mpi.h>
int MPI_Parrived(MPI_Request *request, int partition, int *flag)
int MPI_Parrived(MPI_Request request, int partition, int *flag)
Fortran Syntax
Expand Down
2 changes: 1 addition & 1 deletion docs/man-openmpi/man3/MPI_Pready.3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ C Syntax
#include <mpi.h>
int MPI_Pready(int partition, MPI_Request *request)
int MPI_Pready(int partition, MPI_Request request)
Fortran Syntax
Expand Down
2 changes: 1 addition & 1 deletion docs/man-openmpi/man3/MPI_Pready_list.3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ C Syntax
#include <mpi.h>
int MPI_Pready_list(int length, int *partitions, MPI_Request *request)
int MPI_Pready_list(int length, int *partitions, MPI_Request request)
Fortran Syntax
Expand Down
2 changes: 1 addition & 1 deletion docs/man-openmpi/man3/MPI_Pready_range.3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ C Syntax
#include <mpi.h>
int MPI_Pready_range(int partition_low, int partition_high, MPI_Request *request)
int MPI_Pready_range(int partition_low, int partition_high, MPI_Request request)
Fortran Syntax
Expand Down

0 comments on commit 5bf2745

Please sign in to comment.