From 27a30d6acc0f49a09c44e6c4ff71b33382eba1f0 Mon Sep 17 00:00:00 2001 From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch> Date: Wed, 31 Jan 2018 13:37:55 +0100 Subject: [PATCH] Fix incomplete method documentation. --- AutoTx/Email.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AutoTx/Email.cs b/AutoTx/Email.cs index d678364..f2b4689 100644 --- a/AutoTx/Email.cs +++ b/AutoTx/Email.cs @@ -60,7 +60,7 @@ namespace AutoTx /// </summary> /// <param name="templateName">The file name of the template, without path.</param> /// <param name="substitions">A list of string-tuples to be used for the search-replace.</param> - /// <returns></returns> + /// <returns>The template with all patterns replaced by their substitution values.</returns> private static string LoadMailTemplate(string templateName, List<Tuple<string, string>> substitions) { var text = File.ReadAllText( Path.Combine(AppDomain.CurrentDomain.BaseDirectory, -- GitLab