From e22c6770266fd3a5b05fb4f5c8e3fa2b04400f50 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Thu, 23 Dec 2021 15:11:40 +0200 Subject: [PATCH] Added missing docstring --- source/dlog/core.d | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/source/dlog/core.d b/source/dlog/core.d index b7e0b17..935085d 100644 --- a/source/dlog/core.d +++ b/source/dlog/core.d @@ -106,7 +106,11 @@ public abstract class MessageTransform /* Next transformation (if any) */ private MessageTransform chainedTransform; - /* Transformation (implement this) */ + /** + * The actual textual transformation. + * + * This is to be implemented by sub-classes + */ public abstract string transform(string text, string[] context); /**