Merge pull request #3624 from thabaum/documentation-spelling-correction

Documentation spelling correction.  Fixes #3623
This commit is contained in:
Shaun Walker 2024-01-09 14:52:55 -05:00 committed by GitHub
commit cd6be0d755
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 10 additions and 10 deletions

View File

@ -5,7 +5,7 @@ using System.Threading.Tasks;
namespace Oqtane.Services
{
/// <summary>
/// Service to retreive and store modules (<see cref="Module"/>)
/// Service to retrieve and store modules (<see cref="Module"/>)
/// </summary>
public interface IModuleService
{

View File

@ -5,7 +5,7 @@ using System.Threading.Tasks;
namespace Oqtane.Services
{
/// <summary>
/// Service to store and retreive notifications (<see cref="Notification"/>)
/// Service to store and retrieve notifications (<see cref="Notification"/>)
/// </summary>
public interface INotificationService
{

View File

@ -4,7 +4,7 @@ using System.Threading.Tasks;
namespace Oqtane.Services
{
/// <summary>
/// Service to store and retreive a <see cref="PageModule"/>
/// Service to store and retrieve a <see cref="PageModule"/>
/// </summary>
public interface IPageModuleService
{

View File

@ -5,7 +5,7 @@ using System.Threading.Tasks;
namespace Oqtane.Services
{
/// <summary>
/// Service to store and retreive <see cref="Profile"/> entries
/// Service to store and retrieve <see cref="Profile"/> entries
/// </summary>
public interface IProfileService
{

View File

@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace Oqtane.Services
{
/// <summary>
/// Service to store and retreive <see cref="Site"/> entries
/// Service to store and retrieve <see cref="Site"/> entries
/// </summary>
public interface ISiteService
{

View File

@ -5,7 +5,7 @@ using System.Threading.Tasks;
namespace Oqtane.Services
{
/// <summary>
/// Service to retreive <see cref="SiteTemplate"/> entries
/// Service to retrieve <see cref="SiteTemplate"/> entries
/// </summary>
public interface ISiteTemplateService
{

View File

@ -17,7 +17,7 @@ namespace Oqtane.Services
Task<List<Theme>> GetThemesAsync();
/// <summary>
/// Returns a specific thenme
/// Returns a specific theme
/// </summary>
/// <param name="themeId"></param>
/// <param name="siteId"></param>
@ -56,7 +56,7 @@ namespace Oqtane.Services
List<ThemeControl> GetContainerControls(List<Theme> themes, string themeControlType);
/// <summary>
/// Updates a existing theem
/// Updates a existing theme
/// </summary>
/// <param name="theme"></param>
/// <returns></returns>

View File

@ -2,6 +2,6 @@
This folder contains special attributes for the API Code Generator.
The idea is that only items marked with special attributes are valide public APIs, and only these will be documented in the public docs
The idea is that only items marked with special attributes are valid public APIs, and only these will be documented in the public docs
As of 2020, all APIs are documented, and only these marked as `[PrivateApi]` will be excluded. In future, we may reverse this to only document things marked as `[PublicApi]`.
As of 2020, all APIs are documented, and only these marked as `[PrivateApi]` will be excluded. In future, we may reverse this to only document things marked as `[PublicApi]`.