diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2022-04-08 13:22:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-08 13:22:07 (GMT) |
commit | 236297c00d630b391b2ee3b98e67b0b83d642a12 (patch) | |
tree | 4c047585c6c8878d3d592dc398536ccff27ee5ee /src/H5Dint.c | |
parent | 02d0208187af16137d01a3261961ab8fabd65d28 (diff) | |
download | hdf5-236297c00d630b391b2ee3b98e67b0b83d642a12.zip hdf5-236297c00d630b391b2ee3b98e67b0b83d642a12.tar.gz hdf5-236297c00d630b391b2ee3b98e67b0b83d642a12.tar.bz2 |
1.12: Last round of normalizations for 1.12.2 (#1621)
Diffstat (limited to 'src/H5Dint.c')
-rw-r--r-- | src/H5Dint.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c index 6d3371d..53b691e 100644 --- a/src/H5Dint.c +++ b/src/H5Dint.c @@ -192,7 +192,7 @@ H5D__init_package(void) FUNC_ENTER_PACKAGE - /* Initialize the atom group for the dataset IDs */ + /* Initialize the ID group for the dataset IDs */ if (H5I_register_type(H5I_DATASET_CLS) < 0) HGOTO_ERROR(H5E_DATASET, H5E_CANTINIT, FAIL, "unable to initialize interface") @@ -3854,7 +3854,7 @@ H5D__get_space(const H5D_t *dset) if (NULL == (space = H5S_copy(dset->shared->space, FALSE, TRUE))) HGOTO_ERROR(H5E_DATASET, H5E_CANTINIT, FAIL, "unable to get dataspace") - /* Create an atom */ + /* Create an ID */ if ((ret_value = H5I_register(H5I_DATASPACE, space, TRUE)) < 0) HGOTO_ERROR(H5E_ATOM, H5E_CANTREGISTER, FAIL, "unable to register dataspace") @@ -3901,7 +3901,7 @@ H5D__get_type(const H5D_t *dset) if (H5T_lock(dt, FALSE) < 0) HGOTO_ERROR(H5E_DATASET, H5E_CANTINIT, FAIL, "unable to lock transient datatype") - /* Create an atom */ + /* Create an ID */ if (H5T_is_named(dt)) { /* If this is a committed datatype, we need to recreate the * two-level IDs, where the VOL object is a copy of the |