summaryrefslogtreecommitdiffstats
path: root/src/H5FDros3.h
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-09-05 21:52:30 (GMT)
committerGitHub <noreply@github.com>2023-09-05 21:52:30 (GMT)
commit8253ab9ebf6a082dc07eb931f27b169d6a45d577 (patch)
tree47630856491e54f5d28e1608ffa5e2f976dc9c95 /src/H5FDros3.h
parent920869796031ed4ee9c1fbea8aaccda3592a88b3 (diff)
downloadhdf5-8253ab9ebf6a082dc07eb931f27b169d6a45d577.zip
hdf5-8253ab9ebf6a082dc07eb931f27b169d6a45d577.tar.gz
hdf5-8253ab9ebf6a082dc07eb931f27b169d6a45d577.tar.bz2
Convert hbool_t --> bool in src (#3496)
* hbool_t --> bool in src * Does not remove TRUE/FALSE * Public header files are unchanged * Public API calls are unchanged * TRUE/FALSE --> true/false in src * Add deprecation notice for hbool_t
Diffstat (limited to 'src/H5FDros3.h')
-rw-r--r--src/H5FDros3.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5FDros3.h b/src/H5FDros3.h
index 0f2f315..ecd2678 100644
--- a/src/H5FDros3.h
+++ b/src/H5FDros3.h
@@ -51,10 +51,10 @@
*
* `authenticate` (hbool_t)
*
- * Flag TRUE or FALSE whether or not requests are to be authenticated
+ * Flag true or false whether or not requests are to be authenticated
* with the AWS4 algorithm.
- * If TRUE, `aws_region`, `secret_id`, and `secret_key` must be populated.
- * If FALSE, those three components are unused.
+ * If true, `aws_region`, `secret_id`, and `secret_key` must be populated.
+ * If false, those three components are unused.
*
* `aws_region` (char[])
*
@@ -114,7 +114,7 @@
* to #H5FD_CURR_ROS3_FAPL_T_VERSION.
*
* \var hbool_t H5FD_ros3_fapl_t::authenticate
- * A boolean which specifies if security credentials should be used for
+ * A Boolean which specifies if security credentials should be used for
* accessing a S3 bucket.
*
* \var char H5FD_ros3_fapl_t::aws_region[H5FD_ROS3_MAX_REGION_LEN + 1]