summaryrefslogtreecommitdiffstats
path: root/tools/src/h5dump/h5dump_xml.c
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2022-04-07 17:59:11 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2022-04-07 17:59:11 (GMT)
commitdbfa606888c6ed92da882936e63c4f3b13551607 (patch)
treed70208839a7c3fa314299acb6253dbae32678fab /tools/src/h5dump/h5dump_xml.c
parentc3902706ad01a5f1c0a6a213a4eac9c75f4709d9 (diff)
parentb3dbd62426c9b5be542bc41d390b4eea8473c55f (diff)
downloadhdf5-dbfa606888c6ed92da882936e63c4f3b13551607.zip
hdf5-dbfa606888c6ed92da882936e63c4f3b13551607.tar.gz
hdf5-dbfa606888c6ed92da882936e63c4f3b13551607.tar.bz2
Merge branch 'spelling-corrections' of https://github.com/lrknox/hdf5 into lrknox-spelling-corrections
Diffstat (limited to 'tools/src/h5dump/h5dump_xml.c')
-rw-r--r--tools/src/h5dump/h5dump_xml.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/src/h5dump/h5dump_xml.c b/tools/src/h5dump/h5dump_xml.c
index ccf4156..5f64d6c 100644
--- a/tools/src/h5dump/h5dump_xml.c
+++ b/tools/src/h5dump/h5dump_xml.c
@@ -23,7 +23,7 @@
const char *xmlnsprefix = "hdf5:";
/*
- * Alternative formating for data dumped to XML
+ * Alternative formatting for data dumped to XML
* In general, the numbers are the same, but separators
* except spaces are not used.
*
@@ -2795,7 +2795,7 @@ xml_dump_group(hid_t gid, const char *name)
if (isRoot && unamedtype) {
unsigned u;
- /* Very special case: dump unamed type in root group */
+ /* Very special case: dump unnamed type in root group */
for (u = 0; u < type_table->nobjs; u++) {
if (!type_table->objs[u].recorded) {
char *obj_tok_str = NULL;
@@ -2888,7 +2888,7 @@ xml_dump_group(hid_t gid, const char *name)
if (isRoot && unamedtype) {
unsigned u;
- /* Very special case: dump unamed type in root group */
+ /* Very special case: dump unnamed type in root group */
for (u = 0; u < type_table->nobjs; u++) {
if (!type_table->objs[u].recorded) {
char *obj_tok_str = NULL;
@@ -2940,7 +2940,7 @@ xml_dump_group(hid_t gid, const char *name)
/*-------------------------------------------------------------------------
* Function: xml_print_refs
*
- * Purpose: Print a path to the objects referenced by HDF5 Referneces.
+ * Purpose: Print a path to the objects referenced by HDF5 References.
*
* Return: void
*