diff --git a/Octokit.Reactive/Clients/IObservableTreesClient.cs b/Octokit.Reactive/Clients/IObservableTreesClient.cs
index 696df956..4a1d8cb9 100644
--- a/Octokit.Reactive/Clients/IObservableTreesClient.cs
+++ b/Octokit.Reactive/Clients/IObservableTreesClient.cs
@@ -19,7 +19,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// The SHA that references the tree
- /// The for the specified Tree.
+ ///
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
IObservable Get(string owner, string name, string reference);
@@ -31,7 +31,7 @@ namespace Octokit.Reactive
///
/// The ID of the repository
/// The SHA that references the tree
- /// The for the specified Tree.
+ ///
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
IObservable Get(int repositoryId, string reference);
@@ -44,7 +44,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// The SHA that references the tree
- /// The for the specified Tree.
+ ///
IObservable GetRecursive(string owner, string name, string reference);
///
@@ -55,7 +55,7 @@ namespace Octokit.Reactive
///
/// The ID of the repository
/// The SHA that references the tree
- /// The for the specified Tree.
+ ///
IObservable GetRecursive(int repositoryId, string reference);
///
@@ -67,7 +67,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// The value of the new tree
- /// The that was just created.
+ ///
IObservable Create(string owner, string name, NewTree newTree);
///
@@ -78,7 +78,7 @@ namespace Octokit.Reactive
///
/// The ID of the repository
/// The value of the new tree
- /// The that was just created.
+ ///
IObservable Create(int repositoryId, NewTree newTree);
}
}
\ No newline at end of file
diff --git a/Octokit.Reactive/Clients/ObservableTreesClient.cs b/Octokit.Reactive/Clients/ObservableTreesClient.cs
index bfe13b16..a0212f03 100644
--- a/Octokit.Reactive/Clients/ObservableTreesClient.cs
+++ b/Octokit.Reactive/Clients/ObservableTreesClient.cs
@@ -29,7 +29,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// The SHA that references the tree
- /// The for the specified Tree.
+ ///
public IObservable Get(string owner, string name, string reference)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -47,7 +47,7 @@ namespace Octokit.Reactive
///
/// The ID of the repository
/// The SHA that references the tree
- /// The for the specified Tree.
+ ///
public IObservable Get(int repositoryId, string reference)
{
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
@@ -64,7 +64,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// The SHA that references the tree
- /// The for the specified Tree.
+ ///
public IObservable GetRecursive(string owner, string name, string reference)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -82,7 +82,7 @@ namespace Octokit.Reactive
///
/// The ID of the repository
/// The SHA that references the tree
- /// The for the specified Tree.
+ ///
public IObservable GetRecursive(int repositoryId, string reference)
{
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
@@ -99,7 +99,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// The value of the new tree
- /// The that was just created.
+ ///
public IObservable Create(string owner, string name, NewTree newTree)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -117,7 +117,7 @@ namespace Octokit.Reactive
///
/// The ID of the repository
/// The value of the new tree
- /// The that was just created.
+ ///
public IObservable Create(int repositoryId, NewTree newTree)
{
Ensure.ArgumentNotNull(newTree, "newTree");
diff --git a/Octokit/Clients/ITreesClient.cs b/Octokit/Clients/ITreesClient.cs
index fe74e1eb..85590f54 100644
--- a/Octokit/Clients/ITreesClient.cs
+++ b/Octokit/Clients/ITreesClient.cs
@@ -19,7 +19,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The SHA that references the tree
- /// The for the specified Tree.
+ ///
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
Task Get(string owner, string name, string reference);
@@ -31,7 +31,7 @@ namespace Octokit
///
/// The ID of the repository
/// The SHA that references the tree
- /// The for the specified Tree.
+ ///
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
Task Get(int repositoryId, string reference);
@@ -44,7 +44,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The SHA that references the tree
- /// The for the specified Tree.
+ ///
Task GetRecursive(string owner, string name, string reference);
///
@@ -55,7 +55,7 @@ namespace Octokit
///
/// The ID of the repository
/// The SHA that references the tree
- /// The for the specified Tree.
+ ///
Task GetRecursive(int repositoryId, string reference);
///
@@ -67,7 +67,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The value of the new tree
- /// The that was just created.
+ ///
Task Create(string owner, string name, NewTree newTree);
///
@@ -78,7 +78,7 @@ namespace Octokit
///
/// The ID of the repository
/// The value of the new tree
- /// The that was just created.
+ ///
Task Create(int repositoryId, NewTree newTree);
}
}
\ No newline at end of file
diff --git a/Octokit/Clients/TreesClient.cs b/Octokit/Clients/TreesClient.cs
index 829014c6..b24f15e7 100644
--- a/Octokit/Clients/TreesClient.cs
+++ b/Octokit/Clients/TreesClient.cs
@@ -30,7 +30,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The SHA that references the tree
- /// The for the specified Tree.
+ ///
public Task Get(string owner, string name, string reference)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -48,7 +48,7 @@ namespace Octokit
///
/// The ID of the repository
/// The SHA that references the tree
- /// The for the specified Tree.
+ ///
public Task Get(int repositoryId, string reference)
{
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
@@ -65,7 +65,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The SHA that references the tree
- /// The for the specified Tree.
+ ///
public Task GetRecursive(string owner, string name, string reference)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -83,7 +83,7 @@ namespace Octokit
///
/// The ID of the repository
/// The SHA that references the tree
- /// The for the specified Tree.
+ ///
public Task GetRecursive(int repositoryId, string reference)
{
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
@@ -100,7 +100,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The value of the new tree
- /// The that was just created.
+ ///
public Task Create(string owner, string name, NewTree newTree)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -123,7 +123,7 @@ namespace Octokit
///
/// The ID of the repository
/// The value of the new tree
- /// The that was just created.
+ ///
public Task Create(int repositoryId, NewTree newTree)
{
Ensure.ArgumentNotNull(newTree, "newTree");