Skip to content

Commit

Permalink
Docs: Correct typos (#6845)
Browse files Browse the repository at this point in the history
* Update GridPage.razor

* Fix typo in LinkPage.razor

* Update MudMessageBox.razor.cs
  • Loading branch information
Mr-Technician authored Jun 3, 2023
1 parent df18245 commit 9027f08
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/MudBlazor.Docs/Pages/Components/Grid/GridPage.razor
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@page "/components/grid"

<DocsPage>
<DocsPageHeader Title="Grid" SubTitle="The grid component helps keeping layout consistent across various screen resolutions and sizes.">
<DocsPageHeader Title="Grid" SubTitle="The grid component helps keep layouts consistent across various screen resolutions and sizes.">
<Description>
MudBlazor comes with a 12-point grid system and contains 5 types of breakpoints that are used for specific screen sizes.<br /><br />
MudBlazor comes with a 12-point grid system and contains 6 breakpoints that are used for specific screen sizes.<br /><br />
Read more about <MudLink Href="/features/breakpoints">MudBlazor's breakpoints here.</MudLink>
</Description>
</DocsPageHeader>
Expand Down
4 changes: 2 additions & 2 deletions src/MudBlazor.Docs/Pages/Components/Link/LinkPage.razor
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@

<DocsPageSection>
<SectionHeader Title="OnClick">
<Description><CodeInline>OnClick</CodeInline> property privides a way to invoke an action instead of (or in conjunction with) <CodeInline>Href</CodeInline> navigation.</Description>
<Description><CodeInline>OnClick</CodeInline> property provides a way to invoke an action instead of (or in conjunction with) <CodeInline>Href</CodeInline> navigation.</Description>
</SectionHeader>
<SectionContent Code="LinkOnClickExample">
<LinkOnClickExample />
</SectionContent>
</DocsPageSection>
</DocsPageContent>
</DocsPage>
</DocsPage>
4 changes: 2 additions & 2 deletions src/MudBlazor/Components/MessageBox/MudMessageBox.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public partial class MudMessageBox : MudComponentBase
public string NoText { get; set; }

/// <summary>
/// Define the no button as a render fragment (overrides CancelText).
/// Define the no button as a render fragment (overrides NoText).
/// Must be a MudButton
/// </summary>
[Parameter]
Expand All @@ -84,7 +84,7 @@ public partial class MudMessageBox : MudComponentBase
public string YesText { get; set; } = "OK";

/// <summary>
/// Define the cancel button as a render fragment (overrides CancelText).
/// Define the yes button as a render fragment (overrides YesText).
/// Must be a MudButton
/// </summary>
[Parameter]
Expand Down

0 comments on commit 9027f08

Please sign in to comment.