summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjhendersonHDF <jhenderson@hdfgroup.org>2022-01-19 20:29:37 (GMT)
committerGitHub <noreply@github.com>2022-01-19 20:29:37 (GMT)
commit6c184e28d80dff5ae1efb63ca28043c62f1b7670 (patch)
treea8ba4867f42181306f70c46b0a65a9cf09fc112b
parent1a9662e04c4e469be8c4f822c2dc83f19a7be4be (diff)
downloadhdf5-6c184e28d80dff5ae1efb63ca28043c62f1b7670.zip
hdf5-6c184e28d80dff5ae1efb63ca28043c62f1b7670.tar.gz
hdf5-6c184e28d80dff5ae1efb63ca28043c62f1b7670.tar.bz2
Fix documentation for H5D_space_status_t enum values (#1372)
-rw-r--r--src/H5Dpublic.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Dpublic.h b/src/H5Dpublic.h
index 10e297f..02644ed 100644
--- a/src/H5Dpublic.h
+++ b/src/H5Dpublic.h
@@ -91,9 +91,9 @@ typedef enum H5D_alloc_time_t {
typedef enum H5D_space_status_t {
H5D_SPACE_STATUS_ERROR = -1, /**< Error */
H5D_SPACE_STATUS_NOT_ALLOCATED = 0, /**< Space has not been allocated for this dataset. */
- H5D_SPACE_STATUS_PART_ALLOCATED = 1, /**< Space has been allocated for this dataset. */
- H5D_SPACE_STATUS_ALLOCATED = 2 /**< Space has been partially allocated for this dataset. (Used only for
- datasets with chunked storage.) */
+ H5D_SPACE_STATUS_PART_ALLOCATED = 1, /**< Space has been partially allocated for this dataset.
+ (Used only for datasets with chunked storage.) */
+ H5D_SPACE_STATUS_ALLOCATED = 2 /**< Space has been allocated for this dataset. */
} H5D_space_status_t;
//! <!-- [H5D_space_status_t_snip] -->