From f8d90f101769db3af1a38a605952ab9af97e9254 Mon Sep 17 00:00:00 2001 From: liangshiwei Date: Thu, 26 Nov 2020 18:00:38 +0800 Subject: [PATCH 1/2] Fix typo --- docs/en/Migration-Guides/Abp-4_0-Blazor.md | 2 +- docs/en/UI/Blazor/Theming.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/Migration-Guides/Abp-4_0-Blazor.md b/docs/en/Migration-Guides/Abp-4_0-Blazor.md index d381ffceb6..4098689f59 100644 --- a/docs/en/Migration-Guides/Abp-4_0-Blazor.md +++ b/docs/en/Migration-Guides/Abp-4_0-Blazor.md @@ -27,7 +27,7 @@ using Volo.Abp.Bundling; namespace MyCompanyName.MyProjectName.Blazor { - public class MyProjectNameBundleContributer : IBundleContributer + public class MyProjectNameBundleContributer : IBundleContributor { public void AddScripts(BundleContext context) { diff --git a/docs/en/UI/Blazor/Theming.md b/docs/en/UI/Blazor/Theming.md index a3ecca784b..2c8ef0de22 100644 --- a/docs/en/UI/Blazor/Theming.md +++ b/docs/en/UI/Blazor/Theming.md @@ -67,7 +67,7 @@ The easiest way to create a new theme is to copy the [Basic Theme Source Code](h ### Global Styles / Scripts -A theme generally needs to add a global style to the page. ABP provides a system to manage the [Global Styles and Scripts](Global-Scripts-Styles.md). A theme can implement the `IBundleContributer` to add global style or script files to the page. +A theme generally needs to add a global style to the page. ABP provides a system to manage the [Global Styles and Scripts](Global-Scripts-Styles.md). A theme can implement the `IBundleContributor` to add global style or script files to the page. **Example: Adding a style to the page** @@ -76,7 +76,7 @@ using Volo.Abp.Bundling; namespace MyTheme { - public class MyThemeBundleContributer : IBundleContributer + public class MyThemeBundleContributer : IBundleContributor { public void AddScripts(BundleContext context) { From 1dcc6b9468aba05520ee1731060807f92da79bd8 Mon Sep 17 00:00:00 2001 From: liangshiwei Date: Thu, 26 Nov 2020 18:06:44 +0800 Subject: [PATCH 2/2] Fix typo --- docs/en/Migration-Guides/Abp-4_0-Blazor.md | 2 +- docs/en/UI/Blazor/Theming.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/Migration-Guides/Abp-4_0-Blazor.md b/docs/en/Migration-Guides/Abp-4_0-Blazor.md index 4098689f59..90a9bc2e53 100644 --- a/docs/en/Migration-Guides/Abp-4_0-Blazor.md +++ b/docs/en/Migration-Guides/Abp-4_0-Blazor.md @@ -27,7 +27,7 @@ using Volo.Abp.Bundling; namespace MyCompanyName.MyProjectName.Blazor { - public class MyProjectNameBundleContributer : IBundleContributor + public class MyProjectNameBundleContributor : IBundleContributor { public void AddScripts(BundleContext context) { diff --git a/docs/en/UI/Blazor/Theming.md b/docs/en/UI/Blazor/Theming.md index 2c8ef0de22..cbc6341dab 100644 --- a/docs/en/UI/Blazor/Theming.md +++ b/docs/en/UI/Blazor/Theming.md @@ -76,7 +76,7 @@ using Volo.Abp.Bundling; namespace MyTheme { - public class MyThemeBundleContributer : IBundleContributor + public class MyThemeBundleContributor : IBundleContributor { public void AddScripts(BundleContext context) {