diff options
author | Gerd Heber <gheber@hdfgroup.org> | 2021-12-04 00:54:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-04 00:54:24 (GMT) |
commit | 63835409d7e62539cdf25047f5ffb9b88fb252e4 (patch) | |
tree | c5d721b29118bf5595f37728ce1aff062fcb848f /src | |
parent | 9f128f4f5734629825f06dffaf6194aa4a6b70c9 (diff) | |
download | hdf5-63835409d7e62539cdf25047f5ffb9b88fb252e4.zip hdf5-63835409d7e62539cdf25047f5ffb9b88fb252e4.tar.gz hdf5-63835409d7e62539cdf25047f5ffb9b88fb252e4.tar.bz2 |
Fixed minor issues. (#1257)
* Fixed minor issues.
* Whoops. Forgot to commit these.
* CMake update.
* One more time.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Lpublic.h | 5 | ||||
-rw-r--r-- | src/H5Opublic.h | 6 | ||||
-rw-r--r-- | src/H5Rpublic.h | 2 |
3 files changed, 6 insertions, 7 deletions
diff --git a/src/H5Lpublic.h b/src/H5Lpublic.h index be0d065..82f5f16 100644 --- a/src/H5Lpublic.h +++ b/src/H5Lpublic.h @@ -1248,7 +1248,7 @@ H5_DLL herr_t H5Lcreate_ud(hid_t link_loc_id, const char *link_name, H5L_type_t * Remaining \c struct members are optional and may be passed as NULL. * * The link class passed in \c class_id must be in the user-definable - * range between #H5L_TYPE_UD_MIN and #H5L_TYPE_UD_MAX + * range between #H5L_TYPE_UD_MIN and #H5L_TYPE_MAX * (see the table below) and will override * any existing link class with that identifier. * @@ -1294,7 +1294,7 @@ H5_DLL herr_t H5Lcreate_ud(hid_t link_loc_id, const char *link_name, H5L_type_t * <tr> * <td>255</td> * <td>Maximum user-defined value</td> - * <td>#H5L_TYPE_UD_MAX</td> + * <td>#H5L_TYPE_MAX</td> * </tr> * <tr> * <td>255</td> @@ -1349,7 +1349,6 @@ H5_DLL herr_t H5Lcreate_ud(hid_t link_loc_id, const char *link_name, H5L_type_t * \li #H5L_TYPE_MAX is the maximum allowed value for a link type * identifier. * \li #H5L_TYPE_UD_MIN equals #H5L_TYPE_EXTERNAL. - * \li #H5L_TYPE_UD_MAX equals #H5L_TYPE_MAX. * \li #H5L_TYPE_ERROR indicates that an error has occurred. * * \note \Bold{Registration with The HDF Group:}\n diff --git a/src/H5Opublic.h b/src/H5Opublic.h index 769df60..001ee31 100644 --- a/src/H5Opublic.h +++ b/src/H5Opublic.h @@ -1516,9 +1516,9 @@ H5_DLL herr_t H5Ovisit_by_name(hid_t loc_id, const char *obj_name, H5_index_t id * retrieves the metadata describing that object in \p oinfo , * defined as a \c struct of type H5O_info1_t : * - * \snippet this H5O_info1_t_snip + * \snippet this H5O_info_t_snip * - * Note the following about H5O_info1_t : + * Note the following about H5O_info_t : * - Of the four time fields (\c atime, \c mtime, \c ctime, and \c btime) * only \c ctime has been implemented. * - The \c atime value is the last time the object was read or written. @@ -1642,7 +1642,7 @@ H5_DLL herr_t H5Oget_info_by_name1(hid_t loc_id, const char *name, H5O_info_t *o * * \p oinfo, in which the object information is returned, is a \c struct of * type H5O_info1_t . - * \snippet this H5O_info1_t_snip + * \snippet this H5O_info_t_snip * * The link access property list, \c lapl_id, is not currently used; * it should be passed in as #H5P_DEFAULT. diff --git a/src/H5Rpublic.h b/src/H5Rpublic.h index 9682bf2..a21f5a0 100644 --- a/src/H5Rpublic.h +++ b/src/H5Rpublic.h @@ -201,7 +201,7 @@ H5_DLL hid_t H5Rget_region(hid_t dataset, H5R_type_t ref_type, const void *ref); * \param[in] id The dataset containing the reference object or the group * containing that dataset * \param[in] ref_type Type of reference to query - * \param[in] ref Reference to query + * \param[in] _ref Reference to query * \param[out] obj_type Type of referenced object * * \return \herr_t |