diff --git a/osu.Game/Skinning/SkinProvidingContainer.cs b/osu.Game/Skinning/SkinProvidingContainer.cs
index 078c666472..0f2d8e2c22 100644
--- a/osu.Game/Skinning/SkinProvidingContainer.cs
+++ b/osu.Game/Skinning/SkinProvidingContainer.cs
@@ -24,7 +24,7 @@ namespace osu.Game.Skinning
public event Action SourceChanged;
///
- /// The list of skins provided by this .
+ /// Skins which should be exposed by this container, in order of lookup precedence.
///
protected readonly BindableList SkinSources = new BindableList();
@@ -44,7 +44,7 @@ namespace osu.Game.Skinning
protected virtual bool AllowColourLookup => true;
///
- /// Constructs a new with a single skin added to the protected list.
+ /// Constructs a new initialised with a single skin source.
///
public SkinProvidingContainer(ISkin skin)
: this()
@@ -54,7 +54,7 @@ namespace osu.Game.Skinning
///
/// Constructs a new with no sources.
- /// Up to the implementation for adding to the list.
+ /// Implementations can add or change sources through the list.
///
protected SkinProvidingContainer()
{