summaryrefslogtreecommitdiffstats
path: root/doxygen/examples
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-06-05 23:22:10 (GMT)
committerGitHub <noreply@github.com>2023-06-05 23:22:10 (GMT)
commitcd18732c2ee6e06384d5dfb033f9a9dc1c60ab0d (patch)
tree62b93d13cd3fcd8e60a9b9ad736dde00894a1522 /doxygen/examples
parent6787a5bbef0e69aacadc9182f773ffc8a6d12127 (diff)
downloadhdf5-cd18732c2ee6e06384d5dfb033f9a9dc1c60ab0d.zip
hdf5-cd18732c2ee6e06384d5dfb033f9a9dc1c60ab0d.tar.gz
hdf5-cd18732c2ee6e06384d5dfb033f9a9dc1c60ab0d.tar.bz2
Remove most unused options which are defaulted #2998 (#3046)
* Remove most unused options which are defaulted #2998 * Correct doxygen predefined list * Correct doxygen list of predefineds
Diffstat (limited to 'doxygen/examples')
-rw-r--r--doxygen/examples/H5.format.1.0.html2
-rw-r--r--doxygen/examples/H5.format.1.1.html2
-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
-rw-r--r--doxygen/examples/ImageSpec.html12
-rw-r--r--doxygen/examples/tables/propertyLists.dox4
7 files changed, 16 insertions, 16 deletions
diff --git a/doxygen/examples/H5.format.1.0.html b/doxygen/examples/H5.format.1.0.html
index 4eb0548..26d0421 100644
--- a/doxygen/examples/H5.format.1.0.html
+++ b/doxygen/examples/H5.format.1.0.html
@@ -1488,7 +1488,7 @@ Elena> "Free-space object"
</tr>
<tr valign=top>
- <td>Object Size</td> <td>This is the size of the the fields
+ <td>Object Size</td> <td>This is the size of the fields
above plus the object data stored for the object. The
actual storage size is rounded up to a multiple of
eight.</td>
diff --git a/doxygen/examples/H5.format.1.1.html b/doxygen/examples/H5.format.1.1.html
index 9d03a76..3af50d6 100644
--- a/doxygen/examples/H5.format.1.1.html
+++ b/doxygen/examples/H5.format.1.1.html
@@ -6091,7 +6091,7 @@ TABLE.list TD { border:none; }
<td>Used by the library before version 1.6.1. In this version,
the Flags field is used to indicate whether the actual message is
stored in the global heap (never implemented). The Pointer field
- either contains the the header message address in the global heap
+ either contains the header message address in the global heap
(never implemented) or the address of the shared object header.</td>
</tr>
</table>
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 */
diff --git a/doxygen/examples/ImageSpec.html b/doxygen/examples/ImageSpec.html
index 1b700ff..130d86e 100644
--- a/doxygen/examples/ImageSpec.html
+++ b/doxygen/examples/ImageSpec.html
@@ -851,7 +851,7 @@ This defines the color model that the entries in the palette data set represent.
"RGB"</dt>
<dd>
-Each color index contains a triplet where the the first value defines the
+Each color index contains a triplet where the first value defines the
red component, second defines the green component, and the third the blue
component.</dd>
@@ -859,7 +859,7 @@ component.</dd>
"CMY"</dt>
<dd>
-Each color index contains a triplet where the the first value defines the
+Each color index contains a triplet where the first value defines the
cyan component, second defines the magenta component, and the third the
yellow component.</dd>
@@ -867,7 +867,7 @@ yellow component.</dd>
"CMYK"</dt>
<dd>
-Each color index contains a quadruplet where the the first value defines
+Each color index contains a quadruplet where the first value defines
the cyan component, second defines the magenta component, the third the
yellow component, and the forth the black component.</dd>
@@ -875,7 +875,7 @@ yellow component, and the forth the black component.</dd>
"YCbCr"</dt>
<dd>
-Class Y encoding model. Each color index contains a triplet where the the
+Class Y encoding model. Each color index contains a triplet where the
first value defines the luminance, second defines the Cb Chromonance, and
the third the Cr Chromonance.</dd>
@@ -884,14 +884,14 @@ the third the Cr Chromonance.</dd>
<dd>
Composite encoding color model. Each color index contains a triplet where
-the the first value defines the luminance component, second defines the
+the first value defines the luminance component, second defines the
chromonance component, and the third the value component.</dd>
<dt>
"HSV"</dt>
<dd>
-Each color index contains a triplet where the the first value defines the
+Each color index contains a triplet where the first value defines the
hue component, second defines the saturation component, and the third the
value component. The hue component defines the hue spectrum with a low
value representing magenta/red progressing to a high value which would
diff --git a/doxygen/examples/tables/propertyLists.dox b/doxygen/examples/tables/propertyLists.dox
index e77c2fd..039ac97 100644
--- a/doxygen/examples/tables/propertyLists.dox
+++ b/doxygen/examples/tables/propertyLists.dox
@@ -245,7 +245,7 @@ file access property list.</td>
</tr>
<tr>
<td>#H5Pset_page_buffer_size/#H5Pget_page_buffer_size</td>
-<td>Set/get the the maximum size for the page buffer.</td>
+<td>Set/get the maximum size for the page buffer.</td>
</tr>
<tr>
<td>#H5Pset_sieve_buf_size/#H5Pget_sieve_buf_size</td>
@@ -742,7 +742,7 @@ C function is a macro: \see \ref api-compat-macros.</td>
<td>Sets up use of the Fletcher32 checksum filter.</td>
</tr>
<tr>
-<td>#H5Pset_local_heap_size_hint#H5Pget_local_heap_size_hint/</td>
+<td>#H5Pset_local_heap_size_hint/#H5Pget_local_heap_size_hint</td>
<td>Sets/gets the anticipated maximum size of a local heap.</td>
</tr>
<tr>