diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2022-04-07 18:00:19 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2022-04-07 18:00:19 (GMT) |
commit | 53d990c2c31095a0662e5119587bfcad34a21a8f (patch) | |
tree | d70208839a7c3fa314299acb6253dbae32678fab /src/H5P.c | |
parent | c3902706ad01a5f1c0a6a213a4eac9c75f4709d9 (diff) | |
parent | dbfa606888c6ed92da882936e63c4f3b13551607 (diff) | |
download | hdf5-53d990c2c31095a0662e5119587bfcad34a21a8f.zip hdf5-53d990c2c31095a0662e5119587bfcad34a21a8f.tar.gz hdf5-53d990c2c31095a0662e5119587bfcad34a21a8f.tar.bz2 |
Merge branch 'lrknox-spelling-corrections' into hdf5_1_12
Diffstat (limited to 'src/H5P.c')
-rw-r--r-- | src/H5P.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -678,7 +678,7 @@ done: NAME H5Pexist PURPOSE - Routine to query the existance of a property in a property object. + Routine to query the existence of a property in a property object. USAGE htri_t H5P_exist(id, name) hid_t id; IN: Property object ID to check @@ -712,7 +712,7 @@ H5Pexist(hid_t id, const char *name) if (!name || !*name) HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid property name"); - /* Check for the existance of the property in the list or class */ + /* Check for the existence of the property in the list or class */ if (H5I_GENPROP_LST == H5I_get_type(id)) { if (NULL == (plist = (H5P_genplist_t *)H5I_object(id))) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a property list"); @@ -858,7 +858,7 @@ done: Failure: H5I_INVALID_HID (negative) DESCRIPTION Decodes a property list from a binary buffer. The contents of the buffer - contain the values for the correponding properties of the plist. The decode + contain the values for the corresponding properties of the plist. The decode callback of a certain property decodes its value from the buffer and sets it in the property list. GLOBAL VARIABLES @@ -1299,7 +1299,7 @@ done: Returns non-negative on success, negative on failure. DESCRIPTION Removes a property from a property list. Both properties which were - in existance when the property list was created (i.e. properties registered + in existence when the property list was created (i.e. properties registered with H5Pregister2) and properties added to the list after it was created (i.e. added with H5Pinsert2) may be removed from a property list. Properties do not need to be removed a property list before the list itself |