diff --git a/docs/man-openmpi/man3/MPI_Parrived.3.rst b/docs/man-openmpi/man3/MPI_Parrived.3.rst index bc32d7031d8..a80f573f408 100644 --- a/docs/man-openmpi/man3/MPI_Parrived.3.rst +++ b/docs/man-openmpi/man3/MPI_Parrived.3.rst @@ -21,7 +21,7 @@ C Syntax #include - int MPI_Parrived(MPI_Request *request, int partition, int *flag) + int MPI_Parrived(MPI_Request request, int partition, int *flag) Fortran Syntax diff --git a/docs/man-openmpi/man3/MPI_Pready.3.rst b/docs/man-openmpi/man3/MPI_Pready.3.rst index 728b7053cc8..bd4cd0508b5 100644 --- a/docs/man-openmpi/man3/MPI_Pready.3.rst +++ b/docs/man-openmpi/man3/MPI_Pready.3.rst @@ -21,7 +21,7 @@ C Syntax #include - int MPI_Pready(int partition, MPI_Request *request) + int MPI_Pready(int partition, MPI_Request request) Fortran Syntax diff --git a/docs/man-openmpi/man3/MPI_Pready_list.3.rst b/docs/man-openmpi/man3/MPI_Pready_list.3.rst index 55bffac2651..751286f4524 100644 --- a/docs/man-openmpi/man3/MPI_Pready_list.3.rst +++ b/docs/man-openmpi/man3/MPI_Pready_list.3.rst @@ -21,7 +21,7 @@ C Syntax #include - int MPI_Pready_list(int length, int *partitions, MPI_Request *request) + int MPI_Pready_list(int length, int *partitions, MPI_Request request) Fortran Syntax diff --git a/docs/man-openmpi/man3/MPI_Pready_range.3.rst b/docs/man-openmpi/man3/MPI_Pready_range.3.rst index a6758c7606b..576f09a4302 100644 --- a/docs/man-openmpi/man3/MPI_Pready_range.3.rst +++ b/docs/man-openmpi/man3/MPI_Pready_range.3.rst @@ -21,7 +21,7 @@ C Syntax #include - 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 diff --git a/test/carto/carto-file b/test/carto/carto-file index 46e6c8ef323..aeacf6965c1 100644 --- a/test/carto/carto-file +++ b/test/carto/carto-file @@ -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 diff --git a/test/monitoring/check_monitoring.c b/test/monitoring/check_monitoring.c index c1c16749c0f..eacc616de54 100644 --- a/test/monitoring/check_monitoring.c +++ b/test/monitoring/check_monitoring.c @@ -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 @@ -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); diff --git a/test/simple/concurrent_spawn.c b/test/simple/concurrent_spawn.c index 3c2eefbc7d6..d8c21596c93 100644 --- a/test/simple/concurrent_spawn.c +++ b/test/simple/concurrent_spawn.c @@ -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]); diff --git a/test/simple/hello_show_help.c b/test/simple/hello_show_help.c index 5f8b9131214..bf9039f8b06 100644 --- a/test/simple/hello_show_help.c +++ b/test/simple/hello_show_help.c @@ -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"); diff --git a/test/simple/intercomm1.c b/test/simple/intercomm1.c index 8c01d3aef29..d43653b7f54 100644 --- a/test/simple/intercomm1.c +++ b/test/simple/intercomm1.c @@ -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); diff --git a/test/util/opal_error.c b/test/util/opal_error.c index f815dd9f0bb..207bab69b76 100644 --- a/test/util/opal_error.c +++ b/test/util/opal_error.c @@ -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 @@ -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);