Skip to content

Commit 6c150ff

Browse files
committed
Revert back spelling changes to be consistent with the rest of project
1 parent 8526707 commit 6c150ff

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/React.AspNet/HtmlHelperExtensions.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ private static IReactEnvironment Environment
6363
/// <typeparam name="T">Type of the props</typeparam>
6464
/// <param name="htmlHelper">HTML helper</param>
6565
/// <param name="componentName">Name of the component</param>
66-
/// <param name="props">Props to initialize the component with</param>
66+
/// <param name="props">Props to initialise the component with</param>
6767
/// <param name="htmlTag">HTML tag to wrap the component in. Defaults to &lt;div&gt;</param>
6868
/// <param name="containerId">ID to use for the container HTML tag. Defaults to an auto-generated ID</param>
69-
/// <param name="clientOnly">Skip rendering server-side and only output client-side initialization code. Defaults to <c>false</c></param>
69+
/// <param name="clientOnly">Skip rendering server-side and only output client-side initialisation code. Defaults to <c>false</c></param>
7070
/// <param name="renderReactAttributes">Indicates if the React data-attributes should be rendered during server side rendering</param>
7171
/// <returns>The component's HTML</returns>
7272
public static IHtmlString React<T>(
@@ -89,17 +89,17 @@ public static IHtmlString React<T>(
8989
}
9090

9191
/// <summary>
92-
/// Renders the specified React component, along with its client-side initialization code.
92+
/// Renders the specified React component, along with its client-side initialisation code.
9393
/// Normally you would use the <see cref="React{T}"/> method, but <see cref="ReactWithInit{T}"/>
9494
/// is useful when rendering self-contained partial views.
9595
/// </summary>
9696
/// <typeparam name="T">Type of the props</typeparam>
9797
/// <param name="htmlHelper">HTML helper</param>
9898
/// <param name="componentName">Name of the component</param>
99-
/// <param name="props">Props to initialize the component with</param>
99+
/// <param name="props">Props to initialise the component with</param>
100100
/// <param name="htmlTag">HTML tag to wrap the component in. Defaults to &lt;div&gt;</param>
101101
/// <param name="containerId">ID to use for the container HTML tag. Defaults to an auto-generated ID</param>
102-
/// <param name="clientOnly">Skip rendering server-side and only output client-side initialization code. Defaults to <c>false</c></param>
102+
/// <param name="clientOnly">Skip rendering server-side and only output client-side initialisation code. Defaults to <c>false</c></param>
103103
/// <returns>The component's HTML</returns>
104104
public static IHtmlString ReactWithInit<T>(
105105
this IHtmlHelper htmlHelper,

0 commit comments

Comments
 (0)