Skip to content

Commit b9f3eb6

Browse files
committed
Fix a variety of typos in comments and strings
No code or logic changes. Thanks to @spaette for bringing these to our attention. Signed-off-by: Jeff Squyres <[email protected]>
1 parent 57f2404 commit b9f3eb6

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

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
@@ -503,7 +504,7 @@ int main(int argc, char *argv[])
503504
MPI_Abort(MPI_COMM_WORLD, -1);
504505

505506
/* third phase: exchange size times data with everyone, including self, in
506-
MPI_COMM_WORLD with RMA opertations */
507+
MPI_COMM_WORLD with RMA operations */
507508
char win_buff[20];
508509
MPI_Win win;
509510
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
@@ -58,7 +58,7 @@ int main(int argc, char *argv[])
5858
else {
5959
hostname = opal_gethostname();
6060
if (argc == 1) {
61-
printf("ERROR: child did not receive exepcted argv!\n");
61+
printf("ERROR: child did not receive expected argv!\n");
6262
i = -1;
6363
} else {
6464
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
@@ -13,7 +13,7 @@ int main(int argc, char *argv[])
1313
MPI_Comm_split(MPI_COMM_WORLD, color, rank, &scomm);
1414
printf("%d Calling Intercomm_create\n", rank);
1515
MPI_Intercomm_create(scomm, 0, MPI_COMM_WORLD, 1 - color, 1, &comm);
16-
printf("%d Completet\n", rank);
16+
printf("%d Complete\n", rank);
1717
MPI_Comm_rank(comm, &rank);
1818
MPI_Comm_remote_size(comm, &size);
1919
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 @@ int 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
};
5556
char buf[1024];
5657

0 commit comments

Comments
 (0)