Documentation

This commit is contained in:
Mbucari 2023-02-03 14:43:35 -07:00
parent 5557772957
commit 70607aaaf4
2 changed files with 2 additions and 5 deletions

View File

@ -16,7 +16,7 @@ internal interface IPropertyTag
public Regex NameMatcher { get; }
/// <summary>
/// Determine if the template string starts with <see cref="TemplateTag"/>, and if it does parse the tag to an <see cref="ITagExpression"/>
/// Determine if the template string starts with <see cref="TemplateTag"/>, and if it does parse the tag to an <see cref="Expression"/>
/// </summary>
/// <param name="templateString">Template string</param>
/// <param name="exactName">The <paramref name="templateString"/> substring that was matched.</param>

View File

@ -104,9 +104,6 @@ public class TemplatePart : IEnumerable<TemplatePart>
var last = left.LastPart;
last.next = right;
right.previous = last;
return left;
return left.FirstPart;
}
public static TemplatePart operator +(TemplatePart left, TemplatePart right)
=> Concatenate(left, right);
}