summaryrefslogtreecommitdiffstats
path: root/doxygen
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-03-20 18:00:00 (GMT)
committerGitHub <noreply@github.com>2023-03-20 18:00:00 (GMT)
commit1ffaa38174b0f784b7ed6a471f40bf0e749ceac3 (patch)
tree7862edd79409afc7806996f166aa6bb7cd2088e9 /doxygen
parentc01e27cd8ea443a6ddf68ca1052a491692e28ae9 (diff)
downloadhdf5-1ffaa38174b0f784b7ed6a471f40bf0e749ceac3.zip
hdf5-1ffaa38174b0f784b7ed6a471f40bf0e749ceac3.tar.gz
hdf5-1ffaa38174b0f784b7ed6a471f40bf0e749ceac3.tar.bz2
Gather latest CMake changes from develop (#2609)
Add HDF5_SRC_INCLUDE_DIRS variable cleanup cmake comments and documentation
Diffstat (limited to 'doxygen')
-rw-r--r--doxygen/examples/H5Pget_metadata_read_attempts.2.c4
-rw-r--r--doxygen/examples/H5Pget_metadata_read_attempts.3.c4
-rw-r--r--doxygen/examples/H5Pset_metadata_read_attempts.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/doxygen/examples/H5Pget_metadata_read_attempts.2.c b/doxygen/examples/H5Pget_metadata_read_attempts.2.c
index 2cd12db..44b26e9 100644
--- a/doxygen/examples/H5Pget_metadata_read_attempts.2.c
+++ b/doxygen/examples/H5Pget_metadata_read_attempts.2.c
@@ -1,7 +1,7 @@
/* Open the file with SWMR access and default file access property list */
fid = H5Fopen(FILE, (H5F_ACC_RDONLY | H5F_ACC_SWMR_READ), H5P_DEFAULT);
-/* Get the file's file access roperty list */
+/* Get the file's file access property list */
file_fapl = H5Fget_access_plist(fid);
/* Retrieve the # of read attempts from the file's file access property list */
@@ -26,7 +26,7 @@ H5Pset_metadata_read_attempts(fapl, 20);
/* Open the file with SWMR access and the non-default file access property list */
fid = H5Fopen(FILE, (H5F_ACC_RDONLY | H5F_ACC_SWMR_READ), fapl);
-/* Get the file's file access roperty list */
+/* Get the file's file access property list */
file_fapl = H5Fget_access_plist(fid);
/* Retrieve the # of read attempts from the file's file access property list */
diff --git a/doxygen/examples/H5Pget_metadata_read_attempts.3.c b/doxygen/examples/H5Pget_metadata_read_attempts.3.c
index 4b5ea3a..8edda9f 100644
--- a/doxygen/examples/H5Pget_metadata_read_attempts.3.c
+++ b/doxygen/examples/H5Pget_metadata_read_attempts.3.c
@@ -1,7 +1,7 @@
/* Open the file with non-SWMR access and default file access property list */
fid = H5Fopen(FILE, H5F_ACC_RDONLY, H5P_DEFAULT);
-/* Get the file's file access roperty list */
+/* Get the file's file access property list */
file_fapl = H5Fget_access_plist(fid);
/* Retrieve the # of read attempts from the file's file access property list */
@@ -26,7 +26,7 @@ H5Pset_metadata_read_attempts(fapl, 20);
/* Open the file with non-SWMR access and the non-default file access property list */
fid = H5Fopen(FILE, H5F_ACC_RDONLY, fapl);
-/* Get the file's file access roperty list */
+/* Get the file's file access property list */
file_fapl = H5Fget_access_plist(fid);
/* Retrieve the # of read attempts from the file's file access property list */
diff --git a/doxygen/examples/H5Pset_metadata_read_attempts.c b/doxygen/examples/H5Pset_metadata_read_attempts.c
index 7c2f65d..db3573b 100644
--- a/doxygen/examples/H5Pset_metadata_read_attempts.c
+++ b/doxygen/examples/H5Pset_metadata_read_attempts.c
@@ -8,7 +8,7 @@ H5Pset_metadata_read_attempts(fapl, 20);
/* Open the file with SWMR access and the non-default file access property list */
fid = H5Fopen(FILE, (H5F_ACC_RDONLY | H5F_ACC_SWMR_READ), fapl);
-/* Get the file's file access roperty list */
+/* Get the file's file access property list */
file_fapl = H5Fget_access_plist(fid);
/* Retrieve the # of read attempts from the file's file access property list */
@@ -38,7 +38,7 @@ H5Pset_metadata_read_attempts(fapl, 20);
/* Open the file with SWMR access and the non-default file access property list */
fid = H5Fopen(FILE, H5F_ACC_RDONLY, fapl);
-/* Get the file's file access roperty list */
+/* Get the file's file access property list */
file_fapl = H5Fget_access_plist(fid);
/* Retrieve the # of read attempts from the file's file access property list */