Added missing docstring

This commit is contained in:
Tristan B. Velloza Kildaire 2021-12-23 15:11:40 +02:00
parent 69caf75ae6
commit e22c677026
1 changed files with 5 additions and 1 deletions

View File

@ -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);
/**