Skip to content

Commit

Permalink
Fixed swapped doccomments in HtmlLiteral
Browse files Browse the repository at this point in the history
  • Loading branch information
exyi authored Aug 29, 2019
1 parent 079a04d commit 8b02c3c
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/DotVVM.Framework/Controls/HtmlLiteral.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@ public string Html
public static readonly DotvvmProperty HtmlProperty =
DotvvmProperty.Register<string, HtmlLiteral>(t => t.Html, "");


/// <summary>
/// Gets or sets whether the control should render a wrapper element.
/// Gets or sets the name of the tag that wraps the HtmlLiteral.
/// </summary>
[MarkupOptions(AllowBinding = false)]
public string WrapperTagName
Expand All @@ -40,10 +39,9 @@ public string WrapperTagName
public static readonly DotvvmProperty WrapperTagNameProperty
= DotvvmProperty.Register<string, HtmlLiteral>(c => c.WrapperTagName, "div");


/// <summary>
/// Gets or sets the name of the tag that wraps the HtmlLiteral.
/// </summary>
/// Gets or sets whether the control should render a wrapper element.
/// </summary>
[MarkupOptions(AllowBinding = false)]
public bool RenderWrapperTag
{
Expand Down

0 comments on commit 8b02c3c

Please sign in to comment.