Skip to content

Commit 3619cfb

Browse files
TimoSalomakimarin-bratanov
authored andcommitted
Some minor typo fixes
1 parent d5b37ac commit 3619cfb

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

components/button/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ The button renders a `<button type="submit">` element by default, as this is the
164164
You can control the `type` attribute through the `ButtonType` property of the component which can accept the following values:
165165

166166
* `Submit` - Renders a `type="submit"` attribute. Can submit the form and trigger validation. The default value.
167-
* `Button` - Renders a `type="button"` attribute. Does not invokce form validation and submission.
167+
* `Button` - Renders a `type="button"` attribute. Does not invoke form validation and submission.
168168
* `Reset` - Renders a `type="reset"` attribute. Can reset the current form.
169169

170170
````CSHTML

components/calendar/navigation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The user can click on an item in the current view to go to the more detailed vie
5252

5353
You can control the initial view by setting the `View` property to a member of the `Telerik.Blazor.CalendarView` enum as listed above.
5454

55-
You can control how much detail the user can go into by setting the `BottomView` property to the same enum. Once the user reaches this bottom view, clicking the items selects them and does not navigate to a mode detailed view.
55+
You can control how much detail the user can go into by setting the `BottomView` property to the same enum. Once the user reaches this bottom view, clicking the items selects them and does not navigate to a more detailed view.
5656

5757
>caption Control current view and how deep the user can go
5858

components/chart/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ To use a Telerik chart for Blazor:
7474
7575
![](images/overview-chart.png)
7676

77-
>tip When configuring nested properties and child elements in your chart, the inner tags will contain their parent tag name and add specifics to its end. You can see an example of this in the `TelerikChartSeries` > `TelerikChartSeriesLabels` tags above example.
77+
>tip When configuring nested properties and child elements in your chart, the inner tags will contain their parent tag name and add specifics to its end. You can see an example of this with the `TelerikChartSeries` > `TelerikChartSeriesLabels` tags in the above example.
7878
7979

8080
>caption Component namespace and reference

components/chart/types/bar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ A **Bar** chart displays data as horizontal bars whose lengths vary according to
1818

1919
@[template](/_contentTemplates/chart/link-to-basics.md#understand-basics-and-databinding-first)
2020

21-
To create an bar chart:
21+
To create a bar chart:
2222

2323
1. add a `TelerikChartSeries` to the `TelerikChartSeriesItems` collection
2424
2. set its `Type` property to `ChartSeriesType.Bar`

components/chart/types/column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ A **Column** chart displays data as vertical bars whose heights vary according t
1818

1919
@[template](/_contentTemplates/chart/link-to-basics.md#understand-basics-and-databinding-first)
2020

21-
To create an bar chart:
21+
To create a column chart:
2222

2323
1. add a `TelerikChartSeries` to the `TelerikChartSeriesItems` collection
2424
2. set its `Type` property to `ChartSeriesType.Column`

components/chart/types/donut.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The **Donut** chart displays the data as sectors from a two-dimensional circle a
1818

1919
@[template](/_contentTemplates/chart/link-to-basics.md#understand-basics-and-databinding-first)
2020

21-
To create an donut chart:
21+
To create a donut chart:
2222

2323
1. add a `TelerikChartSeries` to the `TelerikChartSeriesItems` collection
2424
2. set its `Type` property to `ChartSeriesType.Donut`

components/chart/types/pie.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The **Pie** chart displays the data as sectors from a two-dimensional circle and
1818

1919
@[template](/_contentTemplates/chart/link-to-basics.md#understand-basics-and-databinding-first)
2020

21-
To create an bar chart:
21+
To create a pie chart:
2222

2323
1. add a `TelerikChartSeries` to the `TelerikChartSeriesItems` collection
2424
2. set its `Type` property to `ChartSeriesType.Pie`

0 commit comments

Comments
 (0)