From 4979085a4c12b4d20b87077b73d94864c5b9dd1f Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sun, 13 Oct 2024 19:21:11 +0200 Subject: [PATCH] Get rid of bold text in the first paragraph of function doc comments --- pixmappaint.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pixmappaint.d b/pixmappaint.d index 180b133..15acaa0 100644 --- a/pixmappaint.d +++ b/pixmappaint.d @@ -2194,7 +2194,7 @@ private void invertInto(const Pixmap source, Pixmap target) @trusted @nogc { } /++ - Inverts all colors to produce a $(B negative image). + Inverts all colors to produce a $(I negative image). $(TIP Develops a positive image when applied to a negative one. @@ -2781,7 +2781,7 @@ public void alphaBlendRGB(ref Pixel pxTarget, const Pixel pxSource) @safe { /++ Blends pixel `source` into pixel `target` - using the requested $(B blending mode). + using the requested [BlendMode|blending mode]. +/ template blendPixel(BlendMode mode, BlendAccuracy accuracy = BlendAccuracy.rgba) { @@ -2972,7 +2972,7 @@ template blendPixel(BlendMode mode, BlendAccuracy accuracy = BlendAccuracy.rgba) /++ Blends the pixel data of `source` into `target` - using the requested $(B blending mode). + using the requested [BlendMode|blending mode]. `source` and `target` MUST have the same length. +/