From f9d4616de07554b9b76f0b011a390c84801c5602 Mon Sep 17 00:00:00 2001 From: Alexander Efremov Date: Fri, 17 Jun 2016 05:35:50 +0700 Subject: [PATCH] cleared tags --- Octokit.Reactive/Clients/IObservableCommitsClient.cs | 8 ++++---- Octokit.Reactive/Clients/ObservableCommitsClient.cs | 8 ++++---- Octokit/Clients/CommitsClient.cs | 8 ++++---- Octokit/Clients/ICommitsClient.cs | 8 ++++---- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Octokit.Reactive/Clients/IObservableCommitsClient.cs b/Octokit.Reactive/Clients/IObservableCommitsClient.cs index 2c13a031..8d00ccac 100644 --- a/Octokit.Reactive/Clients/IObservableCommitsClient.cs +++ b/Octokit.Reactive/Clients/IObservableCommitsClient.cs @@ -20,7 +20,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// Tha sha reference of the commit - /// A representing commit for specified repository and reference + /// [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] IObservable Get(string owner, string name, string reference); @@ -33,7 +33,7 @@ namespace Octokit.Reactive /// /// The ID of the repository /// Tha sha reference of the commit - /// A representing commit for specified repository and reference + /// [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] IObservable Get(int repositoryId, string reference); @@ -47,7 +47,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The commit to create - /// A of representing created commit for specified repository + /// IObservable Create(string owner, string name, NewCommit commit); /// @@ -58,7 +58,7 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The commit to create - /// A of representing created commit for specified repository + /// IObservable Create(int repositoryId, NewCommit commit); } } \ No newline at end of file diff --git a/Octokit.Reactive/Clients/ObservableCommitsClient.cs b/Octokit.Reactive/Clients/ObservableCommitsClient.cs index 228681af..633b8e88 100644 --- a/Octokit.Reactive/Clients/ObservableCommitsClient.cs +++ b/Octokit.Reactive/Clients/ObservableCommitsClient.cs @@ -29,7 +29,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// Tha sha reference of the commit - /// A representing commit for specified repository and reference + /// 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 /// Tha sha reference of the commit - /// A representing commit for specified repository and reference + /// 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 commit to create - /// A of representing created commit for specified repository + /// public IObservable Create(string owner, string name, NewCommit commit) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -82,7 +82,7 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The commit to create - /// A of representing created commit for specified repository + /// public IObservable Create(int repositoryId, NewCommit commit) { Ensure.ArgumentNotNull(commit, "commit"); diff --git a/Octokit/Clients/CommitsClient.cs b/Octokit/Clients/CommitsClient.cs index f0eff413..55467539 100644 --- a/Octokit/Clients/CommitsClient.cs +++ b/Octokit/Clients/CommitsClient.cs @@ -28,7 +28,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// Tha sha reference of the commit - /// A representing commit for specified repository and reference + /// public Task Get(string owner, string name, string reference) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -46,7 +46,7 @@ namespace Octokit /// /// The ID of the repository /// Tha sha reference of the commit - /// A representing commit for specified repository and reference + /// public Task Get(int repositoryId, string reference) { Ensure.ArgumentNotNullOrEmptyString(reference, "reference"); @@ -63,7 +63,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The commit to create - /// A representing created commit for specified repository + /// public Task Create(string owner, string name, NewCommit commit) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -81,7 +81,7 @@ namespace Octokit /// /// The ID of the repository /// The commit to create - /// A representing created commit for specified repository + /// public Task Create(int repositoryId, NewCommit commit) { Ensure.ArgumentNotNull(commit, "commit"); diff --git a/Octokit/Clients/ICommitsClient.cs b/Octokit/Clients/ICommitsClient.cs index 62ff94f7..e2d33a6d 100644 --- a/Octokit/Clients/ICommitsClient.cs +++ b/Octokit/Clients/ICommitsClient.cs @@ -20,7 +20,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// Tha sha reference of the commit - /// A representing commit for specified repository and reference + /// [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] Task Get(string owner, string name, string reference); @@ -33,7 +33,7 @@ namespace Octokit /// /// The ID of the repository /// Tha sha reference of the commit - /// A representing commit for specified repository and reference + /// [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] Task Get(int repositoryId, string reference); @@ -47,7 +47,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The commit to create - /// A representing created commit for specified repository + /// Task Create(string owner, string name, NewCommit commit); /// @@ -58,7 +58,7 @@ namespace Octokit /// /// The ID of the repository /// The commit to create - /// A representing created commit for specified repository + /// Task Create(int repositoryId, NewCommit commit); } } \ No newline at end of file