diff --git a/src/Components/Components/src/Forms/InputComponents/InputBase.cs b/src/Components/Components/src/Forms/InputComponents/InputBase.cs
index da13ccbdee..3d00474223 100644
--- a/src/Components/Components/src/Forms/InputComponents/InputBase.cs
+++ b/src/Components/Components/src/Forms/InputComponents/InputBase.cs
@@ -40,7 +40,7 @@ namespace Microsoft.AspNetCore.Components.Forms
/// Gets or sets the value of the input. This should be used with two-way binding.
///
///
- /// @bind-Value="@model.PropertyName"
+ /// @bind-Value="model.PropertyName"
///
[Parameter] public T Value { get; private set; }
diff --git a/src/Components/Components/src/Forms/InputComponents/InputCheckbox.cs b/src/Components/Components/src/Forms/InputComponents/InputCheckbox.cs
index e25867aa1a..1eb09e022d 100644
--- a/src/Components/Components/src/Forms/InputComponents/InputCheckbox.cs
+++ b/src/Components/Components/src/Forms/InputComponents/InputCheckbox.cs
@@ -9,7 +9,7 @@ namespace Microsoft.AspNetCore.Components.Forms
/* This is exactly equivalent to a .razor file containing:
*
* @inherits InputBase
- *
+ *
*
* The only reason it's not implemented as a .razor file is that we don't presently have the ability to compile those
* files within this project. Developers building their own input components should use Razor syntax.
diff --git a/src/Components/Components/src/Forms/InputComponents/InputText.cs b/src/Components/Components/src/Forms/InputComponents/InputText.cs
index 61b4ea13dc..8617bbc784 100644
--- a/src/Components/Components/src/Forms/InputComponents/InputText.cs
+++ b/src/Components/Components/src/Forms/InputComponents/InputText.cs
@@ -10,7 +10,7 @@ namespace Microsoft.AspNetCore.Components.Forms
/* This is almost equivalent to a .razor file containing:
*
* @inherits InputBase
- *
+ *
*
* The only reason it's not implemented as a .razor file is that we don't presently have the ability to compile those
* files within this project. Developers building their own input components should use Razor syntax.
diff --git a/src/Components/Components/src/Forms/InputComponents/InputTextArea.cs b/src/Components/Components/src/Forms/InputComponents/InputTextArea.cs
index e170d4ff19..e7a9a172a9 100644
--- a/src/Components/Components/src/Forms/InputComponents/InputTextArea.cs
+++ b/src/Components/Components/src/Forms/InputComponents/InputTextArea.cs
@@ -10,7 +10,7 @@ namespace Microsoft.AspNetCore.Components.Forms
/* This is almost equivalent to a .razor file containing:
*
* @inherits InputBase
- *
+ *
*
* The only reason it's not implemented as a .razor file is that we don't presently have the ability to compile those
* files within this project. Developers building their own input components should use Razor syntax.
diff --git a/src/Components/test/testassets/BasicTestApp/AddRemoveChildComponents.razor b/src/Components/test/testassets/BasicTestApp/AddRemoveChildComponents.razor
index 91d7525c8d..1c05a7166c 100644
--- a/src/Components/test/testassets/BasicTestApp/AddRemoveChildComponents.razor
+++ b/src/Components/test/testassets/BasicTestApp/AddRemoveChildComponents.razor
@@ -1,7 +1,7 @@
@using System.Collections.Generic
Child components follow.
-Add
-Remove
+Add
+Remove
@foreach (var message in currentChildrenMessages)
{
diff --git a/src/Components/test/testassets/BasicTestApp/AsyncEventHandlerComponent.razor b/src/Components/test/testassets/BasicTestApp/AsyncEventHandlerComponent.razor
index 592ceb275a..3b087ba437 100644
--- a/src/Components/test/testassets/BasicTestApp/AsyncEventHandlerComponent.razor
+++ b/src/Components/test/testassets/BasicTestApp/AsyncEventHandlerComponent.razor
@@ -2,8 +2,8 @@