diff --git a/src/Tgstation.Server.Client/ApiClient.cs b/src/Tgstation.Server.Client/ApiClient.cs
index b9443b8897..69d7d0f79a 100644
--- a/src/Tgstation.Server.Client/ApiClient.cs
+++ b/src/Tgstation.Server.Client/ApiClient.cs
@@ -138,7 +138,7 @@ namespace Tgstation.Server.Client
/// The route to run
/// The body of the request
/// The method of the request
- /// The optional for the request
+ /// The optional instance for the request
/// If this is a token refresh operation.
/// The for the operation
/// A resulting in the response on success
diff --git a/src/Tgstation.Server.Client/IApiClient.cs b/src/Tgstation.Server.Client/IApiClient.cs
index ab833b1731..b1c8519892 100644
--- a/src/Tgstation.Server.Client/IApiClient.cs
+++ b/src/Tgstation.Server.Client/IApiClient.cs
@@ -105,7 +105,7 @@ namespace Tgstation.Server.Client
/// The type of the response body
/// The server route to make the request to
/// The request body
- /// The to make the request to
+ /// The instance to make the request to
/// The for the operation
/// A resulting in the response body as a
Task Create(string route, TBody body, long instanceId, CancellationToken cancellationToken);
@@ -115,7 +115,7 @@ namespace Tgstation.Server.Client
///
/// The type of the response body
/// The server route to make the request to
- /// The to make the request to
+ /// The instance to make the request to
/// The for the operation
/// A resulting in the response body as a
Task Create(string route, long instanceId, CancellationToken cancellationToken);
@@ -125,7 +125,7 @@ namespace Tgstation.Server.Client
///
/// The type of the response body
/// The server route to make the request to
- /// The to make the request to
+ /// The instance to make the request to
/// The for the operation
/// A resulting in the response body as a
Task Patch(string route, long instanceId, CancellationToken cancellationToken);
@@ -135,7 +135,7 @@ namespace Tgstation.Server.Client
///
/// The type of the response body
/// The server route to make the request to
- /// The to make the request to
+ /// The instance to make the request to
/// The for the operation
/// A resulting in the response body as a
Task Read(string route, long instanceId, CancellationToken cancellationToken);
@@ -147,7 +147,7 @@ namespace Tgstation.Server.Client
/// The type of the response body
/// The server route to make the request to
/// The request body
- /// The to make the request to
+ /// The instance to make the request to
/// The for the operation
/// A resulting in the response body as a
Task Update(string route, TBody body, long instanceId, CancellationToken cancellationToken);
@@ -156,7 +156,7 @@ namespace Tgstation.Server.Client
/// Run an HTTP DELETE request
///
/// The server route to make the request to
- /// The to make the request to
+ /// The instance to make the request to
/// The for the operation
/// A representing the running operation
Task Delete(string route, long instanceId, CancellationToken cancellationToken);
@@ -167,7 +167,7 @@ namespace Tgstation.Server.Client
/// The type to of the request body
/// The server route to make the request to
/// The request body
- /// The to make the request to
+ /// The instance to make the request to
/// The for the operation
/// A representing the running operation
Task Delete(string route, TBody body, long instanceId, CancellationToken cancellationToken);
@@ -177,7 +177,7 @@ namespace Tgstation.Server.Client
///
/// The type of the response body
/// The server route to make the request to
- /// The to make the request to
+ /// The instance to make the request to
/// The for the operation
/// A resulting in the response body as a
Task Delete(string route, long instanceId, CancellationToken cancellationToken);
diff --git a/src/Tgstation.Server.Client/IInstanceManagerClient.cs b/src/Tgstation.Server.Client/IInstanceManagerClient.cs
index 73d60a3893..57030b1deb 100644
--- a/src/Tgstation.Server.Client/IInstanceManagerClient.cs
+++ b/src/Tgstation.Server.Client/IInstanceManagerClient.cs
@@ -21,7 +21,7 @@ namespace Tgstation.Server.Client
///
/// Create or attach an
///
- /// The to create. will be ignored
+ /// The to create. will be ignored
/// The for the operation
/// A resulting in the created or attached
Task CreateOrAttach(Instance instance, CancellationToken cancellationToken);