@@ -63,10 +63,10 @@ private static IReactEnvironment Environment
63
63
/// <typeparam name="T">Type of the props</typeparam>
64
64
/// <param name="htmlHelper">HTML helper</param>
65
65
/// <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>
67
67
/// <param name="htmlTag">HTML tag to wrap the component in. Defaults to <div></param>
68
68
/// <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>
70
70
/// <param name="renderReactAttributes">Indicates if the React data-attributes should be rendered during server side rendering</param>
71
71
/// <returns>The component's HTML</returns>
72
72
public static IHtmlString React < T > (
@@ -89,17 +89,17 @@ public static IHtmlString React<T>(
89
89
}
90
90
91
91
/// <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.
93
93
/// Normally you would use the <see cref="React{T}"/> method, but <see cref="ReactWithInit{T}"/>
94
94
/// is useful when rendering self-contained partial views.
95
95
/// </summary>
96
96
/// <typeparam name="T">Type of the props</typeparam>
97
97
/// <param name="htmlHelper">HTML helper</param>
98
98
/// <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>
100
100
/// <param name="htmlTag">HTML tag to wrap the component in. Defaults to <div></param>
101
101
/// <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>
103
103
/// <returns>The component's HTML</returns>
104
104
public static IHtmlString ReactWithInit < T > (
105
105
this IHtmlHelper htmlHelper ,
0 commit comments