Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-07-14 08:19:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-07-14 08:19:52 +0300
commit5338b36fccdafde6cf5cdc35df16770055ad8fef (patch)
tree39dbf1b8206367e7f40ac6126b4aebcdb90d80b7 /source/blender/imbuf
parentb818f6b55ff0cd13445917715591d8eb38130c82 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/tiff.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/imbuf/intern/tiff.c b/source/blender/imbuf/intern/tiff.c
index 20e894fa942..715f2aaf621 100644
--- a/source/blender/imbuf/intern/tiff.c
+++ b/source/blender/imbuf/intern/tiff.c
@@ -84,7 +84,7 @@ typedef struct ImbTIFFMemFile {
static void imb_tiff_DummyUnmapProc(
thandle_t fd,
tdata_t base,
- /* Cannot be const, because this function implemements TIFFUnmapFileProc.
+ /* Cannot be const, because this function implements #TIFFUnmapFileProc.
* NOLINTNEXTLINE: readability-non-const-parameter. */
toff_t size)
{
@@ -96,7 +96,7 @@ static void imb_tiff_DummyUnmapProc(
static int imb_tiff_DummyMapProc(
thandle_t fd,
tdata_t *pbase,
- /* Cannot be const, because this function implemements TIFFMapFileProc.
+ /* Cannot be const, because this function implements #TIFFMapFileProc.
* NOLINTNEXTLINE: readability-non-const-parameter. */
toff_t *psize)
{
@@ -110,7 +110,7 @@ static int imb_tiff_DummyMapProc(
/**
* Reads data from an in-memory TIFF file.
*
- * \param handle: Handle of the TIFF file (pointer to ImbTIFFMemFile).
+ * \param handle: Handle of the TIFF file (pointer to #ImbTIFFMemFile).
* \param data: Buffer to contain data (treat as (void *)).
* \param n: Number of bytes to read.
*