diff --git a/osu.Game/OsuGame.cs b/osu.Game/OsuGame.cs
index 321cb25088..fb3ce00824 100644
--- a/osu.Game/OsuGame.cs
+++ b/osu.Game/OsuGame.cs
@@ -441,11 +441,11 @@ namespace osu.Game
private ScheduledDelegate performFromMainMenuTask;
///
- /// Perform an action only after returning to a specific screen specification.
+ /// Perform an action only after returning to a specific screen as indicated by .
/// Eagerly tries to exit the current screen until it succeeds.
///
/// The action to perform once we are in the correct state.
- /// An optional collection of valid screen types. If any of these screens are already current we can immediately perform the action immediately, else the first valid parent will be made current before performing the action. is used if not specified.
+ /// An optional collection of valid screen types. If any of these screens are already current we can perform the action immediately, else the first valid parent will be made current before performing the action. is used if not specified.
protected void PerformFromScreen(Action action, IEnumerable validScreens = null)
{
performFromMainMenuTask?.Cancel();