diff --git a/osu.Game/Rulesets/UI/DrawableRulesetDependencies.cs b/osu.Game/Rulesets/UI/DrawableRulesetDependencies.cs
index 96b02ee4dc..5c031c5f08 100644
--- a/osu.Game/Rulesets/UI/DrawableRulesetDependencies.cs
+++ b/osu.Game/Rulesets/UI/DrawableRulesetDependencies.cs
@@ -25,21 +25,28 @@ namespace osu.Game.Rulesets.UI
///
/// The texture store to be used for the ruleset.
///
+ ///
+ /// Reads textures from the "Textures" folder in ruleset resources.
+ /// If not available locally, lookups will fallback to the global texture store.
+ ///
public TextureStore TextureStore { get; }
///
/// The sample store to be used for the ruleset.
///
///
- /// This is the local sample store pointing to the ruleset sample resources,
- /// the cached sample store () retrieves from
- /// this store and falls back to the parent store if this store doesn't have the requested sample.
+ /// Reads samples from the "Samples" folder in ruleset resources.
+ /// If not available locally, lookups will fallback to the global sample store.
///
public ISampleStore SampleStore { get; }
///
/// The shader manager to be used for the ruleset.
///
+ ///
+ /// Reads shaders from the "Shaders" folder in ruleset resources.
+ /// If not available locally, lookups will fallback to the global shader manager.
+ ///
public ShaderManager ShaderManager { get; }
///