Skip to content

Commit d39fbb6

Browse files
authored
Merge pull request #12754 from jsquyres/pr/v5.0.x/typos-fixes
v5.0.x: fix typos
2 parents 0c2fedf + ba1d19f commit d39fbb6

10 files changed

+12
-10
lines changed

docs/man-openmpi/man3/MPI_Parrived.3.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ C Syntax
2121
2222
#include <mpi.h>
2323
24-
int MPI_Parrived(MPI_Request *request, int partition, int *flag)
24+
int MPI_Parrived(MPI_Request request, int partition, int *flag)
2525
2626
2727
Fortran Syntax

docs/man-openmpi/man3/MPI_Pready.3.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ C Syntax
2121
2222
#include <mpi.h>
2323
24-
int MPI_Pready(int partition, MPI_Request *request)
24+
int MPI_Pready(int partition, MPI_Request request)
2525
2626
2727
Fortran Syntax

docs/man-openmpi/man3/MPI_Pready_list.3.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ C Syntax
2121
2222
#include <mpi.h>
2323
24-
int MPI_Pready_list(int length, int *partitions, MPI_Request *request)
24+
int MPI_Pready_list(int length, int *partitions, MPI_Request request)
2525
2626
2727
Fortran Syntax

docs/man-openmpi/man3/MPI_Pready_range.3.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ C Syntax
2121
2222
#include <mpi.h>
2323
24-
int MPI_Pready_range(int partition_low, int partition_high, MPI_Request *request)
24+
int MPI_Pready_range(int partition_low, int partition_high, MPI_Request request)
2525
2626
2727
Fortran Syntax

test/carto/carto-file

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#
2222
#
2323
# Connection declaration From node To node:weight To node:weight ......
24-
# (Reserve word) (declered (declered (declered
24+
# (Reserve word) (declared (declared (declared
2525
# above) above) above)
2626
#===============================================================================================
2727
CONNECTION slot0 mem0:0 slot1:1 slot2:1 mthca0:1 eth0:1

test/monitoring/check_monitoring.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Copyright (c) 2017 The University of Tennessee and The University
44
* of Tennessee Research Foundation. All rights
55
* reserved.
6+
* Copyright (c) 2024 Jeffrey M. Squyres. All rights reserved.
67
* $COPYRIGHT$
78
*
89
* Additional copyrights may follow
@@ -478,7 +479,7 @@ int main(int argc, char* argv[])
478479
if( -1 == pvar_pml_check(session, size, world_rank) ) MPI_Abort(MPI_COMM_WORLD, -1);
479480

480481
/* third phase: exchange size times data with everyone, including self, in
481-
MPI_COMM_WORLD with RMA opertations */
482+
MPI_COMM_WORLD with RMA operations */
482483
char win_buff[20];
483484
MPI_Win win;
484485
MPI_Win_create(win_buff, 20, sizeof(char), MPI_INFO_NULL, MPI_COMM_WORLD, &win);

test/simple/concurrent_spawn.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ int main(int argc, char* argv[])
6060
else {
6161
hostname = opal_gethostname();
6262
if (argc == 1) {
63-
printf("ERROR: child did not receive exepcted argv!\n");
63+
printf("ERROR: child did not receive expected argv!\n");
6464
i = -1;
6565
} else {
6666
i = atoi(argv[1]);

test/simple/hello_show_help.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ int main(int argc, char* argv[])
2929
opal_output(
3030
0, "This test ensures that the aggregation functionality of the opal_show_help\nsystem "
3131
"is working properly. It outputs a bogus warning about opal_init(),\nand contains "
32-
"sleep statements to ensure that the timer is firiing properly\nin the HNP and "
32+
"sleep statements to ensure that the timer is firing properly\nin the HNP and "
3333
"aggregates messages properly. The total sleep time is\n(3 * num_procs). You "
3434
"should see:\n\n - aggregation messages from the HNP every five seconds or so\n - a "
3535
"total of (2 * num_procs) messages");

test/simple/intercomm1.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ int main( int argc, char *argv[] )
1414
MPI_Comm_split( MPI_COMM_WORLD, color, rank, &scomm );
1515
printf("%d Calling Intercomm_create\n", rank);
1616
MPI_Intercomm_create( scomm, 0, MPI_COMM_WORLD, 1-color, 1, &comm);
17-
printf("%d Completet\n", rank);
17+
printf("%d Complete\n", rank);
1818
MPI_Comm_rank( comm, &rank );
1919
MPI_Comm_remote_size( comm, &size );
2020
MPI_Comm_free(&scomm);

test/util/opal_error.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* University of Stuttgart. All rights reserved.
1010
* Copyright (c) 2004-2005 The Regents of the University of California.
1111
* All rights reserved.
12+
* Copyright (c) 2024 Jeffrey M. Squyres. All rights reserved.
1213
* $COPYRIGHT$
1314
*
1415
* Additional copyrights may follow
@@ -50,7 +51,7 @@ main(int argc, char *argv[])
5051
OPAL_ERR_NOT_FOUND,
5152
OPAL_ERR_BAD_PARAM,
5253
OPAL_ERR_MAX + 10, /* bad value */
53-
1 }; /* sentinal */
54+
1 }; /* sentinel */
5455
char buf[1024];
5556

5657
opal_init(&argc, &argv);

0 commit comments

Comments
 (0)