Merge pull request #3624 from thabaum/documentation-spelling-correction
Documentation spelling correction. Fixes #3623
This commit is contained in:
commit
cd6be0d755
|
@ -5,7 +5,7 @@ using System.Threading.Tasks;
|
||||||
namespace Oqtane.Services
|
namespace Oqtane.Services
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Service to retreive and store modules (<see cref="Module"/>)
|
/// Service to retrieve and store modules (<see cref="Module"/>)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface IModuleService
|
public interface IModuleService
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@ using System.Threading.Tasks;
|
||||||
namespace Oqtane.Services
|
namespace Oqtane.Services
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Service to store and retreive notifications (<see cref="Notification"/>)
|
/// Service to store and retrieve notifications (<see cref="Notification"/>)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface INotificationService
|
public interface INotificationService
|
||||||
{
|
{
|
||||||
|
|
|
@ -4,7 +4,7 @@ using System.Threading.Tasks;
|
||||||
namespace Oqtane.Services
|
namespace Oqtane.Services
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Service to store and retreive a <see cref="PageModule"/>
|
/// Service to store and retrieve a <see cref="PageModule"/>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface IPageModuleService
|
public interface IPageModuleService
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@ using System.Threading.Tasks;
|
||||||
namespace Oqtane.Services
|
namespace Oqtane.Services
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Service to store and retreive <see cref="Profile"/> entries
|
/// Service to store and retrieve <see cref="Profile"/> entries
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface IProfileService
|
public interface IProfileService
|
||||||
{
|
{
|
||||||
|
|
|
@ -7,7 +7,7 @@ using System.Threading.Tasks;
|
||||||
namespace Oqtane.Services
|
namespace Oqtane.Services
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Service to store and retreive <see cref="Site"/> entries
|
/// Service to store and retrieve <see cref="Site"/> entries
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface ISiteService
|
public interface ISiteService
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@ using System.Threading.Tasks;
|
||||||
namespace Oqtane.Services
|
namespace Oqtane.Services
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Service to retreive <see cref="SiteTemplate"/> entries
|
/// Service to retrieve <see cref="SiteTemplate"/> entries
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface ISiteTemplateService
|
public interface ISiteTemplateService
|
||||||
{
|
{
|
||||||
|
|
|
@ -17,7 +17,7 @@ namespace Oqtane.Services
|
||||||
Task<List<Theme>> GetThemesAsync();
|
Task<List<Theme>> GetThemesAsync();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns a specific thenme
|
/// Returns a specific theme
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="themeId"></param>
|
/// <param name="themeId"></param>
|
||||||
/// <param name="siteId"></param>
|
/// <param name="siteId"></param>
|
||||||
|
@ -56,7 +56,7 @@ namespace Oqtane.Services
|
||||||
List<ThemeControl> GetContainerControls(List<Theme> themes, string themeControlType);
|
List<ThemeControl> GetContainerControls(List<Theme> themes, string themeControlType);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Updates a existing theem
|
/// Updates a existing theme
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="theme"></param>
|
/// <param name="theme"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
|
|
||||||
This folder contains special attributes for the API Code Generator.
|
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]`.
|
Loading…
Reference in New Issue
Block a user