summaryrefslogtreecommitdiffstats
path: root/src/H5L.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/H5L.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/H5L.c')
-rw-r--r--src/H5L.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5L.c b/src/H5L.c
index 997c68c..3198644 100644
--- a/src/H5L.c
+++ b/src/H5L.c
@@ -2951,7 +2951,7 @@ H5L__exists_inter_cb(H5G_loc_t H5_ATTR_UNUSED *grp_loc /*in*/, const char H5_ATT
if (lnk != NULL) {
/* Check for more components to the path */
if (udata->sep) {
- H5G_traverse_t cb_func; /* Callback function for tranversal */
+ H5G_traverse_t cb_func; /* Callback function for traversal */
char *next; /* Pointer to next component name */
/* Look for another separator */
@@ -3002,7 +3002,7 @@ htri_t
H5L_exists_tolerant(const H5G_loc_t *loc, const char *name)
{
H5L_trav_le_t udata; /* User data for traversal */
- H5G_traverse_t cb_func; /* Callback function for tranversal */
+ H5G_traverse_t cb_func; /* Callback function for traversal */
char *name_copy = NULL; /* Duplicate of name */
char *name_trav; /* Name to traverse */
htri_t ret_value = FAIL; /* Return value */