Skip to content

Commit

Permalink
Correct doxygen usage
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF committed Oct 17, 2024
1 parent e7d6028 commit 403b4a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/H5Dmodule.h
Original file line number Diff line number Diff line change
Expand Up @@ -1613,7 +1613,7 @@ allocated if necessary.
*
* \subsection subsec_dataset_filters Using HDF5 Filters
* This section describes in detail how to use the n-bit, scale-offset filters and szip filters. For
* details on the how filters are used in the read / write of data, see #subsubsec_dataset_transfer_pipe.
* details on the how filters are used in the read / write of data, see /def subsubsec_dataset_transfer_pipe.
*
* \subsubsection subsubsec_dataset_filters_nbit Using the N‐bit Filter
* N-bit data has n significant bits, where n may not correspond to a precise number of bytes. On
Expand Down
8 changes: 4 additions & 4 deletions src/H5PLmodule.h
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
* the checksum. /code size_t md5_filter(unsigned int flags, size_t cd_nelmts, const unsigned int cd_values[],
* size_t nbytes, size_t *buf_size, void **buf)
* {
* #ifdef HAVE_MD5
* \c \#ifdef HAVE_MD5
* unsigned char cksum[16];
*
* if (flags & H5Z_REVERSE) {
Expand All @@ -207,9 +207,9 @@
* memcpy((char*)(*buf)+nbytes, cksum, 16);
* return nbytes+16;
* }
* #else
* \c \#else
* return 0; // fail
* #endif
* \c \#endif
* }
* /endcode
*
Expand All @@ -219,7 +219,7 @@
* from the reserved range. We'll randomly choose 305.
*
* /code
* #define FILTER_MD5 305
* \c \#define FILTER_MD5 305
* herr_t status = H5Zregister(FILTER_MD5, "md5 checksum", md5_filter);
* /endcode
*
Expand Down

0 comments on commit 403b4a5

Please sign in to comment.