diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2022-01-11 18:17:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-11 18:17:05 (GMT) |
commit | 4aabac62f83c5f69d08d56c0bf4fe0f3e26c26b3 (patch) | |
tree | 2c75a1e95d39ed2f3cc27bb6d3ccbbdc29f1af9d | |
parent | a13bf24a397783272d05a405cb7dcb2b950e4a43 (diff) | |
download | hdf5-4aabac62f83c5f69d08d56c0bf4fe0f3e26c26b3.zip hdf5-4aabac62f83c5f69d08d56c0bf4fe0f3e26c26b3.tar.gz hdf5-4aabac62f83c5f69d08d56c0bf4fe0f3e26c26b3.tar.bz2 |
Corrected H5Oget_info parameter description (#1349)
* H5Lexists docs: Removed reference to 1.8.16 since the change is the 1.8.x releases, HDFFV-11289
* H5Oget_info_by_name, name can be any object, not just a group
-rw-r--r-- | src/H5Opublic.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Opublic.h b/src/H5Opublic.h index b05a2a8..70f451e 100644 --- a/src/H5Opublic.h +++ b/src/H5Opublic.h @@ -510,7 +510,7 @@ H5_DLL herr_t H5Oget_info3(hid_t loc_id, H5O_info2_t *oinfo, unsigned fields); * location and relative name * * \fgdta_loc_obj_id{loc_id} - * \param[in] name Name of group, relative to \p loc_id + * \param[in] name Name of object, relative to \p loc_id * \param[out] oinfo Buffer in which to return object information * \param[in] fields Flags specifying the fields to include in \p oinfo * \lapl_id @@ -1834,7 +1834,7 @@ H5_DLL herr_t H5Oget_info1(hid_t loc_id, H5O_info1_t *oinfo); * by location and relative name * * \fgdta_loc_obj_id{loc_id} - * \param[in] name Name of group, relative to \p loc_id + * \param[in] name Name of object, relative to \p loc_id * \param[out] oinfo Buffer in which to return object information * \lapl_id * @@ -1960,7 +1960,7 @@ H5_DLL herr_t H5Oget_info2(hid_t loc_id, H5O_info1_t *oinfo, unsigned fields); * by location and relative name * * \fgdta_loc_obj_id{loc_id} - * \param[in] name Name of group, relative to \p loc_id + * \param[in] name Name of object, relative to \p loc_id * \param[out] oinfo Buffer in which to return object information * \param[in] fields Flags specifying the fields to include in \p oinfo * \lapl_id |