From ed152c1ddef7793419d3065e29c9d518b86c5666 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Tue, 26 Jul 2022 14:49:04 -0400 Subject: [PATCH] a bit of dox --- png.d | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/png.d b/png.d index c4f27bf..57e430a 100644 --- a/png.d +++ b/png.d @@ -476,8 +476,10 @@ struct PNG { bool replaceChunk (Chunk* chk) { return insertChunk(chk, true); } } -// this is just like writePng(filename, pngFromImage(image)), but it manages -// is own memory and writes straight to the file instead of using intermediate buffers that might not get gc'd right +/++ + this is just like writePng(filename, pngFromImage(image)), but it manages + its own memory and writes straight to the file instead of using intermediate buffers that might not get gc'd right ++/ void writeImageToPngFile(in char[] filename, TrueColorImage image) { PNG* png; ubyte[] com;