Get rid of bold text in the first paragraph of function doc comments

This commit is contained in:
Elias Batek 2024-10-13 19:21:11 +02:00
parent 647c19997d
commit 4979085a4c
1 changed files with 3 additions and 3 deletions

View File

@ -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.
+/