1
0
mirror of https://github.com/deavmi/dlog.git synced 2024-07-27 09:10:51 +02:00

Added missing docstrings

This commit is contained in:
Tristan B. Velloza Kildaire 2021-12-23 15:05:47 +02:00
parent fec60c560a
commit 09c7d85434

View File

@ -109,13 +109,17 @@ public abstract class MessageTransform
/* Transformation (implement this) */
public abstract string transform(string text, string[] context);
/* Chain a transform */
/**
* Chain a transform
*/
public final void chain(MessageTransform transform)
{
chainedTransform = transform;
}
/* Perform the transformation */
/**
* Perform the transformation
*/
public final string execute(string text, string[] context)
{
/* Perform the transformation */
@ -145,4 +149,4 @@ unittest
logger.log([1,2,3]);
logger.log('f');
logger.log(logger);
}
}