summaryrefslogtreecommitdiffstats
path: root/src/H5FDros3.c
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2023-03-13 16:53:08 (GMT)
committerGitHub <noreply@github.com>2023-03-13 16:53:08 (GMT)
commitd2345e9f0cb2ca6a8b6268116eed35647cfebf61 (patch)
tree2e1ba965f1e461dd057f58f5a9f470553b816baf /src/H5FDros3.c
parentbefbbd0b6d508f18af493b7138ca85b117976db6 (diff)
downloadhdf5-d2345e9f0cb2ca6a8b6268116eed35647cfebf61.zip
hdf5-d2345e9f0cb2ca6a8b6268116eed35647cfebf61.tar.gz
hdf5-d2345e9f0cb2ca6a8b6268116eed35647cfebf61.tar.bz2
Addressed various Doxygen grammar issues. (#2524)
* reviewed H5A * Addressed various grammar issues. * remove double words, spelling fixes * replace the use of rawdata with raw data
Diffstat (limited to 'src/H5FDros3.c')
-rw-r--r--src/H5FDros3.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5FDros3.c b/src/H5FDros3.c
index 156da68..9a529d6 100644
--- a/src/H5FDros3.c
+++ b/src/H5FDros3.c
@@ -793,7 +793,7 @@ done:
* or "meta" (any other flag)
*
* Prints filename and listing of total number of reads and bytes read,
- * both as a grand total and separate meta- and rawdata reads.
+ * both as a grand total and separate meta- and raw data reads.
*
* If any reads were done, prints out two tables:
*
@@ -1042,11 +1042,11 @@ ros3_fprint_stats(FILE *stream, const H5FD_ros3_t *file)
HDfprintf(stream, " %8.3f%c %7d %7d %8.3f%c %8.3f%c %8.3f%c %8.3f%c\n", re_dub,
suffixes[suffix_i], /* bin ceiling */
m->count, /* metadata reads */
- r->count, /* rawdata reads */
+ r->count, /* raw data reads */
bm_val, bm_suffix, /* metadata bytes */
- br_val, br_suffix, /* rawdata bytes */
+ br_val, br_suffix, /* raw data bytes */
am_val, am_suffix, /* metadata average */
- ar_val, ar_suffix); /* rawdata average */
+ ar_val, ar_suffix); /* raw data average */
HDfflush(stream);
}