Apply documentation settings for better readability

Co-authored-by: Dean Herbert <pe@ppy.sh>
Co-authored-by: Dan Balasescu <smoogipoo@smgi.me>
This commit is contained in:
Salman Ahmed 2021-06-11 11:25:07 +03:00 committed by GitHub
parent debd359d2e
commit a985e3b8d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ public class SkinProvidingContainer : Container, ISkinSource
public event Action SourceChanged; public event Action SourceChanged;
/// <summary> /// <summary>
/// The list of skins provided by this <see cref="SkinProvidingContainer"/>. /// Skins which should be exposed by this container, in order of lookup precedence.
/// </summary> /// </summary>
protected readonly BindableList<ISkin> SkinSources = new BindableList<ISkin>(); protected readonly BindableList<ISkin> SkinSources = new BindableList<ISkin>();
@ -44,7 +44,7 @@ public class SkinProvidingContainer : Container, ISkinSource
protected virtual bool AllowColourLookup => true; protected virtual bool AllowColourLookup => true;
/// <summary> /// <summary>
/// Constructs a new <see cref="SkinProvidingContainer"/> with a single skin added to the protected <see cref="SkinSources"/> list. /// Constructs a new <see cref="SkinProvidingContainer"/> initialised with a single skin source.
/// </summary> /// </summary>
public SkinProvidingContainer(ISkin skin) public SkinProvidingContainer(ISkin skin)
: this() : this()
@ -54,7 +54,7 @@ public SkinProvidingContainer(ISkin skin)
/// <summary> /// <summary>
/// Constructs a new <see cref="SkinProvidingContainer"/> with no sources. /// Constructs a new <see cref="SkinProvidingContainer"/> with no sources.
/// Up to the implementation for adding to the <see cref="SkinSources"/> list. /// Implementations can add or change sources through the <see cref="SkinSources"/> list.
/// </summary> /// </summary>
protected SkinProvidingContainer() protected SkinProvidingContainer()
{ {