diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Pagination/PagerModel.cs b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Pagination/PagerModel.cs
index 980aacee8a..3c4eb1b88e 100644
--- a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Pagination/PagerModel.cs
+++ b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Pagination/PagerModel.cs
@@ -69,7 +69,7 @@ namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Pagination
}
///
- /// Gets first two, previous & current & next, last two pages
+ /// Gets first two, previous, current, next, last two pages
///
private List GetPagesWithGaps()
{
diff --git a/framework/src/Volo.Abp.BlazoriseUI/AbpCrudPageBase.cs b/framework/src/Volo.Abp.BlazoriseUI/AbpCrudPageBase.cs
index 612034af19..9a820600bd 100644
--- a/framework/src/Volo.Abp.BlazoriseUI/AbpCrudPageBase.cs
+++ b/framework/src/Volo.Abp.BlazoriseUI/AbpCrudPageBase.cs
@@ -439,10 +439,10 @@ namespace Volo.Abp.BlazoriseUI
}
///
- /// Calls IAuthorizationService.CheckAsync for the given .
+ /// Calls IAuthorizationService.CheckAsync for the given .
/// Throws if given policy was not granted for the current user.
///
- /// Does nothing if is null or empty.
+ /// Does nothing if is null or empty.
///
/// A policy name to check
protected virtual async Task CheckPolicyAsync([CanBeNull] string policyName)
diff --git a/framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/AbstractKeyCrudAppService.cs b/framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/AbstractKeyCrudAppService.cs
index 91879f030e..ea0ca508d5 100644
--- a/framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/AbstractKeyCrudAppService.cs
+++ b/framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/AbstractKeyCrudAppService.cs
@@ -132,7 +132,7 @@ namespace Volo.Abp.Application.Services
}
///
- /// Maps to to create a new entity.
+ /// Maps to to create a new entity.
/// It uses by default.
/// It can be overriden for custom mapping.
/// Overriding this has higher priority than overriding the
@@ -143,7 +143,7 @@ namespace Volo.Abp.Application.Services
}
///
- /// Maps to to create a new entity.
+ /// Maps to to create a new entity.
/// It uses by default.
/// It can be overriden for custom mapping.
///
@@ -155,7 +155,7 @@ namespace Volo.Abp.Application.Services
}
///
- /// Sets Id value for the entity if is .
+ /// Sets Id value for the entity if is .
/// It's used while creating a new entity.
///
protected virtual void SetIdForGuids(TEntity entity)
@@ -171,7 +171,7 @@ namespace Volo.Abp.Application.Services
}
///
- /// Maps to to update the entity.
+ /// Maps to to update the entity.
/// It uses by default.
/// It can be overriden for custom mapping.
/// Overriding this has higher priority than overriding the
@@ -183,7 +183,7 @@ namespace Volo.Abp.Application.Services
}
///
- /// Maps to to update the entity.
+ /// Maps to to update the entity.
/// It uses by default.
/// It can be overriden for custom mapping.
///
diff --git a/framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/AbstractKeyReadOnlyAppService.cs b/framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/AbstractKeyReadOnlyAppService.cs
index b9ffe3359b..54c6bd7918 100644
--- a/framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/AbstractKeyReadOnlyAppService.cs
+++ b/framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/AbstractKeyReadOnlyAppService.cs
@@ -166,7 +166,7 @@ namespace Volo.Abp.Application.Services
}
///
- /// Maps to .
+ /// Maps to .
/// It internally calls the by default.
/// It can be overriden for custom mapping.
/// Overriding this has higher priority than overriding the
@@ -177,7 +177,7 @@ namespace Volo.Abp.Application.Services
}
///
- /// Maps to .
+ /// Maps to .
/// It uses by default.
/// It can be overriden for custom mapping.
///
@@ -187,7 +187,7 @@ namespace Volo.Abp.Application.Services
}
///
- /// Maps a list of to objects.
+ /// Maps a list of to objects.
/// It uses method for each item in the list.
///
protected virtual async Task> MapToGetListOutputDtosAsync(List entities)
@@ -203,7 +203,7 @@ namespace Volo.Abp.Application.Services
}
///
- /// Maps to .
+ /// Maps to .
/// It internally calls the by default.
/// It can be overriden for custom mapping.
/// Overriding this has higher priority than overriding the
@@ -214,7 +214,7 @@ namespace Volo.Abp.Application.Services
}
///
- /// Maps to .
+ /// Maps to .
/// It uses by default.
/// It can be overriden for custom mapping.
///