diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2023-02-16 21:09:00 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2023-02-16 21:09:00 +0200 |
commit | d831072cceca458d94d2d5da201862f6d43a417b (patch) | |
tree | 6a165db05825682d5c58f2b8ff1bc3a10b87b5d4 /src/liblzma/api/lzma/delta.h | |
parent | liblzma: Adjust spacing in doc headers in bcj.h. (diff) | |
download | xz-d831072cceca458d94d2d5da201862f6d43a417b.tar.xz |
liblzma: Very minor API doc tweaks.
Use "member" to refer to struct members as that's the term used
by the C standard.
Use lzma_options_delta.dist and such in docs so that in Doxygen's
HTML output they will link to the doc of the struct member.
Clean up a few trailing white spaces too.
Diffstat (limited to 'src/liblzma/api/lzma/delta.h')
-rw-r--r-- | src/liblzma/api/lzma/delta.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/liblzma/api/lzma/delta.h b/src/liblzma/api/lzma/delta.h index ad1aca90..3d7a7f02 100644 --- a/src/liblzma/api/lzma/delta.h +++ b/src/liblzma/api/lzma/delta.h @@ -60,12 +60,12 @@ typedef struct { uint32_t dist; /** - * \brief Minimum value for the dist field in lzma_options_delta. + * \brief Minimum value for lzma_options_delta.dist. */ # define LZMA_DELTA_DIST_MIN 1 - /** - * \brief Maximum value for the dist field in lzma_options_delta. + /** + * \brief Maximum value for lzma_options_delta.dist. */ # define LZMA_DELTA_DIST_MAX 256 |