summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-10-04 09:55:03 (GMT)
committerGitHub <noreply@github.com>2023-10-04 09:55:03 (GMT)
commit51ff48b8873d584811f4cad83c19f1edf484b7e4 (patch)
tree22633f494d84072c55d63ef24e314b48518220fb /utils
parent42549af4c83f4db09461dac6b500daa7e33752c6 (diff)
downloadhdf5-51ff48b8873d584811f4cad83c19f1edf484b7e4.zip
hdf5-51ff48b8873d584811f4cad83c19f1edf484b7e4.tar.gz
hdf5-51ff48b8873d584811f4cad83c19f1edf484b7e4.tar.bz2
Fix several spelling/grammar issues (#3621) (#3632)
Diffstat (limited to 'utils')
-rw-r--r--utils/mirror_vfd/mirror_writer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/mirror_vfd/mirror_writer.c b/utils/mirror_vfd/mirror_writer.c
index 2acc166..24fbc77 100644
--- a/utils/mirror_vfd/mirror_writer.c
+++ b/utils/mirror_vfd/mirror_writer.c
@@ -57,7 +57,7 @@
* guard against commands from the wrong entity.
*
* xmit_count (uint32_t)
- * Record of trasmissions received from the Driver. While the transmission
+ * Record of transmissions received from the Driver. While the transmission
* protocol should be trustworthy, this serves as an additional guard.
* Starts a 0 and should be incremented for each one-way transmission.
*
@@ -728,7 +728,7 @@ do_write(struct mirror_session *session, const unsigned char *xmit_buf)
addr = (haddr_t)xmit_write.offset;
type = (H5FD_mem_t)xmit_write.type;
- /* Allocate the buffer once -- re-use between loops.
+ /* Allocate the buffer once -- reuse between loops.
*/
buf = (char *)malloc(sizeof(char) * H5FD_MIRROR_DATA_BUFFER_MAX);
if (NULL == buf) {