Skip to content

Commit 224a07a

Browse files
committed
fix: applied improvements from code review
1 parent ab0b790 commit 224a07a

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

src/WebUI/WebFragment/FragmentPage/SectionToastNotficationPreferencesFragment.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ namespace WebExpress.Tutorial.WebUI.WebFragment.FragmentPage
88
/// <summary>
99
/// Represents a fragment control for the tutorial.
1010
/// </summary>
11-
[Section<SectionToastNotficationPreferences>]
11+
[Section<SectionToastNotificationPreferences>]
1212
[Scope<IScopeFragment>]
1313
[Cache]
14-
public sealed class SectionToastNotficationPreferencesFragment : FragmentControlText
14+
public sealed class SectionToastnotificationPreferencesFragment : FragmentControlText
1515
{
1616
/// <summary>
1717
/// Initializes a new instance of the class.
1818
/// </summary>
1919
/// <param name="fragmentContext">The context in which the fragment is used.</param>
20-
public SectionToastNotficationPreferencesFragment(IFragmentContext fragmentContext)
20+
public SectionToastnotificationPreferencesFragment(IFragmentContext fragmentContext)
2121
: base(fragmentContext)
2222
{
23-
Text = "SectionToastNotficationPreferences";
23+
Text = "SectionToastnotificationPreferences";
2424
}
2525
}
2626
}

src/WebUI/WebFragment/FragmentPage/SectionToastNotficationPrimaryFragment.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ namespace WebExpress.Tutorial.WebUI.WebFragment.FragmentPage
88
/// <summary>
99
/// Represents a fragment control for the tutorial.
1010
/// </summary>
11-
[Section<SectionToastNotficationPrimary>]
11+
[Section<SectionToastNotificationPrimary>]
1212
[Scope<IScopeFragment>]
1313
[Cache]
14-
public sealed class SectionToastNotficationPrimaryFragment : FragmentControlText
14+
public sealed class SectionToastnotificationPrimaryFragment : FragmentControlText
1515
{
1616
/// <summary>
1717
/// Initializes a new instance of the class.
1818
/// </summary>
1919
/// <param name="fragmentContext">The context in which the fragment is used.</param>
20-
public SectionToastNotficationPrimaryFragment(IFragmentContext fragmentContext)
20+
public SectionToastnotificationPrimaryFragment(IFragmentContext fragmentContext)
2121
: base(fragmentContext)
2222
{
23-
Text = "SectionToastNotficationPrimary";
23+
Text = "SectionToastnotificationPrimary";
2424
}
2525
}
2626
}

src/WebUI/WebFragment/FragmentPage/SectionToastNotficationSecondaryFragment.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ namespace WebExpress.Tutorial.WebUI.WebFragment.FragmentPage
88
/// <summary>
99
/// Represents a fragment control for the tutorial.
1010
/// </summary>
11-
[Section<SectionToastNotficationSecondary>]
11+
[Section<SectionToastNotificationSecondary>]
1212
[Scope<IScopeFragment>]
1313
[Cache]
14-
public sealed class SectionToastNotficationSecondaryFragment : FragmentControlText
14+
public sealed class SectionToastnotificationSecondaryFragment : FragmentControlText
1515
{
1616
/// <summary>
1717
/// Initializes a new instance of the class.
1818
/// </summary>
1919
/// <param name="fragmentContext">The context in which the fragment is used.</param>
20-
public SectionToastNotficationSecondaryFragment(IFragmentContext fragmentContext)
20+
public SectionToastnotificationSecondaryFragment(IFragmentContext fragmentContext)
2121
: base(fragmentContext)
2222
{
23-
Text = "SectionToastNotficationSecondary";
23+
Text = "SectionToastnotificationSecondary";
2424
}
2525
}
2626
}

0 commit comments

Comments
 (0)