diff --git a/osu.Game/Online/RealtimeMultiplayer/IMultiplayerServer.cs b/osu.Game/Online/RealtimeMultiplayer/IMultiplayerServer.cs
index 836260a26d..e2e7b6b991 100644
--- a/osu.Game/Online/RealtimeMultiplayer/IMultiplayerServer.cs
+++ b/osu.Game/Online/RealtimeMultiplayer/IMultiplayerServer.cs
@@ -14,7 +14,7 @@ namespace osu.Game.Online.RealtimeMultiplayer
/// Request to join a multiplayer room.
///
/// The databased room ID.
- /// If the user is already in the requested (or another) room.
+ /// If the user is already in the requested (or another) room.
Task JoinRoom(long roomId);
///
@@ -52,6 +52,7 @@ namespace osu.Game.Online.RealtimeMultiplayer
///
/// A user other than the current host is attempting to start the game.
/// If the user is not in a room.
+ /// If an attempt to start the game occurs when the game's (or users') state disallows it.
Task StartMatch();
}
}