diff --git a/osu.Game/Online/HubClientConnector.cs b/osu.Game/Online/HubClientConnector.cs
index 65285882d9..71d9df84c4 100644
--- a/osu.Game/Online/HubClientConnector.cs
+++ b/osu.Game/Online/HubClientConnector.cs
@@ -18,7 +18,7 @@
namespace osu.Game.Online
{
///
- /// A component that maintains over a hub connection between client and server.
+ /// A component that manages the life cycle of a connection to a SignalR Hub.
///
public class HubClientConnector : IDisposable
{
@@ -52,7 +52,7 @@ public class HubClientConnector : IDisposable
///
/// The name of the client this connector connects for, used for logging.
/// The endpoint to the hub.
- /// The API provider for listening to state changes, or null to not listen.
+ /// An API provider used to react to connection state changes, or null to not establish connection at all (for testing purposes).
public HubClientConnector(string clientName, string endpoint, IAPIProvider? api)
{
this.clientName = clientName;