Skip to content

Commit

Permalink
Merge pull request open-mpi#12754 from jsquyres/pr/v5.0.x/typos-fixes
Browse files Browse the repository at this point in the history
v5.0.x: fix typos
  • Loading branch information
wenduwan authored Aug 14, 2024
2 parents 0c2fedf + ba1d19f commit d39fbb6
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 10 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
2 changes: 1 addition & 1 deletion test/carto/carto-file
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#
#
# Connection declaration From node To node:weight To node:weight ......
# (Reserve word) (declered (declered (declered
# (Reserve word) (declared (declared (declared
# above) above) above)
#===============================================================================================
CONNECTION slot0 mem0:0 slot1:1 slot2:1 mthca0:1 eth0:1
Expand Down
3 changes: 2 additions & 1 deletion test/monitoring/check_monitoring.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Copyright (c) 2017 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2024 Jeffrey M. Squyres. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
Expand Down Expand Up @@ -478,7 +479,7 @@ int main(int argc, char* argv[])
if( -1 == pvar_pml_check(session, size, world_rank) ) MPI_Abort(MPI_COMM_WORLD, -1);

/* third phase: exchange size times data with everyone, including self, in
MPI_COMM_WORLD with RMA opertations */
MPI_COMM_WORLD with RMA operations */
char win_buff[20];
MPI_Win win;
MPI_Win_create(win_buff, 20, sizeof(char), MPI_INFO_NULL, MPI_COMM_WORLD, &win);
Expand Down
2 changes: 1 addition & 1 deletion test/simple/concurrent_spawn.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ int main(int argc, char* argv[])
else {
hostname = opal_gethostname();
if (argc == 1) {
printf("ERROR: child did not receive exepcted argv!\n");
printf("ERROR: child did not receive expected argv!\n");
i = -1;
} else {
i = atoi(argv[1]);
Expand Down
2 changes: 1 addition & 1 deletion test/simple/hello_show_help.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ int main(int argc, char* argv[])
opal_output(
0, "This test ensures that the aggregation functionality of the opal_show_help\nsystem "
"is working properly. It outputs a bogus warning about opal_init(),\nand contains "
"sleep statements to ensure that the timer is firiing properly\nin the HNP and "
"sleep statements to ensure that the timer is firing properly\nin the HNP and "
"aggregates messages properly. The total sleep time is\n(3 * num_procs). You "
"should see:\n\n - aggregation messages from the HNP every five seconds or so\n - a "
"total of (2 * num_procs) messages");
Expand Down
2 changes: 1 addition & 1 deletion test/simple/intercomm1.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ int main( int argc, char *argv[] )
MPI_Comm_split( MPI_COMM_WORLD, color, rank, &scomm );
printf("%d Calling Intercomm_create\n", rank);
MPI_Intercomm_create( scomm, 0, MPI_COMM_WORLD, 1-color, 1, &comm);
printf("%d Completet\n", rank);
printf("%d Complete\n", rank);
MPI_Comm_rank( comm, &rank );
MPI_Comm_remote_size( comm, &size );
MPI_Comm_free(&scomm);
Expand Down
3 changes: 2 additions & 1 deletion test/util/opal_error.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2024 Jeffrey M. Squyres. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
Expand Down Expand Up @@ -50,7 +51,7 @@ main(int argc, char *argv[])
OPAL_ERR_NOT_FOUND,
OPAL_ERR_BAD_PARAM,
OPAL_ERR_MAX + 10, /* bad value */
1 }; /* sentinal */
1 }; /* sentinel */
char buf[1024];

opal_init(&argc, &argv);
Expand Down

0 comments on commit d39fbb6

Please sign in to comment.