diff --git a/src/H5Dmodule.h b/src/H5Dmodule.h index 695c5b6b3d0..5829e80fc9a 100644 --- a/src/H5Dmodule.h +++ b/src/H5Dmodule.h @@ -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 diff --git a/src/H5PLmodule.h b/src/H5PLmodule.h index adbfd302a99..9f867ee5fff 100644 --- a/src/H5PLmodule.h +++ b/src/H5PLmodule.h @@ -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) { @@ -207,9 +207,9 @@ * memcpy((char*)(*buf)+nbytes, cksum, 16); * return nbytes+16; * } - * #else + * \c \#else * return 0; // fail - * #endif + * \c \#endif * } * /endcode * @@ -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 *