Skip to content

Commit 601d933

Browse files
authored
Fix a typo
1 parent f9b3a53 commit 601d933

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/form/formitems/overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ In such cases, there are a few ways to trigger re-rendering and UI refresh insid
160160
<label class="k-label k-form-label" style="color:var(--kendo-color-warning)">
161161
FormItem with Template and Form &nbsp;<code>Refresh()</code>&nbsp; - re-render inside the Form</label>
162162
<div class="k-form-field-wrap">
163-
<ChilComponent Value="@Employee.Name"
163+
<ChildComponent Value="@Employee.Name"
164164
ValueExpression="@( () => Employee.Name )"
165165
OnChange="@OnChildChange_Refresh" />
166166
</div>
@@ -171,7 +171,7 @@ In such cases, there are a few ways to trigger re-rendering and UI refresh insid
171171
<label class="k-label k-form-label" style="color:var(--kendo-color-tertiary)">
172172
FormItem with Template and &nbsp;<code>StateHasChanged()</code>&nbsp; - re-render inside and outside the Form</label>
173173
<div class="k-form-field-wrap">
174-
<ChilComponent Value="@Employee.Name"
174+
<ChildComponent Value="@Employee.Name"
175175
ValueExpression="@( () => Employee.Name )"
176176
OnChange="@OnChildChange_StateHasChanged" />
177177
</div>
@@ -246,7 +246,7 @@ In such cases, there are a few ways to trigger re-rendering and UI refresh insid
246246
}
247247
}
248248
````
249-
````ChilComponent.razor
249+
````ChildComponent.razor
250250
@using System.Linq.Expressions
251251
252252
<TelerikTextBox Value="@Value"

0 commit comments

Comments
 (0)