diff --git a/Octokit/Http/ApiConnection.cs b/Octokit/Http/ApiConnection.cs
index 7fe442f9..c3c9e4bd 100644
--- a/Octokit/Http/ApiConnection.cs
+++ b/Octokit/Http/ApiConnection.cs
@@ -167,7 +167,7 @@ namespace Octokit
}
///
- /// Puts the API object at the specified URI.
+ /// Creates or replaces the API resource at the specified URI
///
/// URI of the API resource to put
/// A for the request's execution.
diff --git a/Octokit/Http/IApiConnection.cs b/Octokit/Http/IApiConnection.cs
index 0b103918..7b6647d9 100644
--- a/Octokit/Http/IApiConnection.cs
+++ b/Octokit/Http/IApiConnection.cs
@@ -101,9 +101,9 @@ namespace Octokit
Task Post(Uri uri, object data, string accepts, string contentType);
///
- /// PUTS the API object at the specified URI.
+ /// Creates or replaces the API resource at the specified URI
///
- /// URI of the API resource to delete
+ /// URI of the API resource to put
/// A for the request's execution.
Task Put(Uri uri);