Documentation
This commit is contained in:
parent
5557772957
commit
70607aaaf4
2 changed files with 2 additions and 5 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue