summaryrefslogtreecommitdiffstats
path: root/src/H5C.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2022-08-18 17:48:17 (GMT)
committerGitHub <noreply@github.com>2022-08-18 17:48:17 (GMT)
commit82ebc9c370164931861f0d174e2b17a109478665 (patch)
treeac35dc2aca63a1cb8d8e9f0562eb76f94f71804d /src/H5C.c
parentfab27c25291d7f0b2d0a585178757dddddba1ace (diff)
downloadhdf5-82ebc9c370164931861f0d174e2b17a109478665.zip
hdf5-82ebc9c370164931861f0d174e2b17a109478665.tar.gz
hdf5-82ebc9c370164931861f0d174e2b17a109478665.tar.bz2
Spelling fixes for codespell (#2038)
* Spelling fixes for codespell * Committing clang-format changes Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'src/H5C.c')
-rw-r--r--src/H5C.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5C.c b/src/H5C.c
index 0996808..b2ff257 100644
--- a/src/H5C.c
+++ b/src/H5C.c
@@ -362,7 +362,7 @@ H5C_create(size_t max_cache_size, size_t min_clean_size, int max_type_id,
cache_ptr->slist_size = (size_t)0;
/* slist_ring_len, slist_ring_size, and
- * slist_ptr initializaed above.
+ * slist_ptr initialized above.
*/
#if H5C_DO_SANITY_CHECKS
@@ -2982,7 +2982,7 @@ H5C_set_slist_enabled(H5C_t *cache_ptr, hbool_t slist_enabled, hbool_t clear_sli
}
/* set cache_ptr->slist_enabled to TRUE so that the slist
- * mainenance macros will be enabled.
+ * maintenance macros will be enabled.
*/
cache_ptr->slist_enabled = TRUE;
@@ -4089,7 +4089,7 @@ H5C_destroy_flush_dependency(void *parent_thing, void *child_thing)
"can't notify parent about child entry serialized flag set")
} /* end if */
- /* Shrink or free the parent array if apporpriate */
+ /* Shrink or free the parent array if appropriate */
if (child_entry->flush_dep_nparents == 0) {
child_entry->flush_dep_parent = H5FL_SEQ_FREE(H5C_cache_entry_ptr_t, child_entry->flush_dep_parent);
child_entry->flush_dep_parent_nalloc = 0;