diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2023-08-25 14:16:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-25 14:16:27 (GMT) |
commit | 6e0e53039a5633707a95065e184c0312274bf823 (patch) | |
tree | 2e0d5b6fd9d11aa23b6def54b932b6d94b27152a | |
parent | df161ac293c30c2e74c5c85bac36d4e5de7b14b4 (diff) | |
download | hdf5-6e0e53039a5633707a95065e184c0312274bf823.zip hdf5-6e0e53039a5633707a95065e184c0312274bf823.tar.gz hdf5-6e0e53039a5633707a95065e184c0312274bf823.tar.bz2 |
Fix the Fortran extension used in example links (#3430)
-rw-r--r-- | doxygen/dox/IntroParExamples.dox | 8 | ||||
-rw-r--r-- | doxygen/dox/IntroParHDF5.dox | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/doxygen/dox/IntroParExamples.dox b/doxygen/dox/IntroParExamples.dox index ba96fed..3929106 100644 --- a/doxygen/dox/IntroParExamples.dox +++ b/doxygen/dox/IntroParExamples.dox @@ -205,7 +205,7 @@ Below is the F90 example program which illustrates how to write contiguous hyper <table> <tr> <td> -<a href="https://github.com/HDFGroup/hdf5-examples/blob/master/Fortran/H5Parallel/ph5_f90_hyperslab_by_col.f90">hyperslab_by_col.f90</a> +<a href="https://github.com/HDFGroup/hdf5-examples/blob/master/Fortran/H5Parallel/ph5_f90_hyperslab_by_col.F90">hyperslab_by_col.F90</a> </td> </tr> </table> @@ -346,7 +346,7 @@ Below is the example program for writing hyperslabs by column in Parallel HDF5: <table> <tr> <td> -<a href="https://github.com/HDFGroup/hdf5-examples/blob/master/Fortran/H5Parallel/ph5_f90_hyperslab_by_row.f90">hyperslab_by_row.f90</a> +<a href="https://github.com/HDFGroup/hdf5-examples/blob/master/Fortran/H5Parallel/ph5_f90_hyperslab_by_row.F90">hyperslab_by_row.F90</a> </td> </tr> </table> @@ -436,7 +436,7 @@ Below are example programs for writing hyperslabs by pattern in Parallel HDF5: </tr> <tr> <td> -<a href="https://github.com/HDFGroup/hdf5-examples/blob/master/Fortran/H5Parallel/ph5_f90_hyperslab_by_pattern.f90">hyperslab_by_pattern.f90</a> +<a href="https://github.com/HDFGroup/hdf5-examples/blob/master/Fortran/H5Parallel/ph5_f90_hyperslab_by_pattern.F90">hyperslab_by_pattern.F90</a> </td> </tr> </table> @@ -535,7 +535,7 @@ Below are example programs for writing hyperslabs by pattern in Parallel HDF5: </tr> <tr> <td> -<a href="https://github.com/HDFGroup/hdf5-examples/blob/master/Fortran/H5Parallel/ph5_f90_hyperslab_by_chunk.f90">hyperslab_by_chunk.f90</a> +<a href="https://github.com/HDFGroup/hdf5-examples/blob/master/Fortran/H5Parallel/ph5_f90_hyperslab_by_chunk.F90">hyperslab_by_chunk.F90</a> </td> </tr> </table> diff --git a/doxygen/dox/IntroParHDF5.dox b/doxygen/dox/IntroParHDF5.dox index 9e9aaa0..1f04e96 100644 --- a/doxygen/dox/IntroParHDF5.dox +++ b/doxygen/dox/IntroParHDF5.dox @@ -146,7 +146,7 @@ Following is example code for creating an access template in HDF5: The following example programs create an HDF5 file using Parallel HDF5: <a href="https://github.com/HDFGroup/hdf5-examples/blob/master/C/H5Parallel/ph5_file_create.c">C: file_create.c</a> -<a href="https://github.com/HDFGroup/hdf5-examples/blob/master/Fortran/H5Parallel/ph5_f90_file_create.f90">F90: file_create.f90</a> +<a href="https://github.com/HDFGroup/hdf5-examples/blob/master/Fortran/H5Parallel/ph5_f90_file_create.F90">F90: file_create.F90</a> \subsection subsec_pintro_create_dset Creating and Accessing a Dataset with PHDF5 @@ -227,7 +227,7 @@ The following code demonstrates a collective write using Parallel HDF5: The following example programs create an HDF5 dataset using Parallel HDF5: <a href="https://github.com/HDFGroup/hdf5-examples/blob/master/C/H5Parallel/ph5_dataset.c">C: dataset.c</a> -<a href="https://github.com/HDFGroup/hdf5-examples/blob/master/Fortran/H5Parallel/ph5_f90_dataset.f90">F90: dataset.f90</a> +<a href="https://github.com/HDFGroup/hdf5-examples/blob/master/Fortran/H5Parallel/ph5_f90_dataset.F90">F90: dataset.F90</a> \subsubsection subsec_pintro_hyperslabs Hyperslabs |