From 763ee76378580926a6ff8b7db9e3237b78d5957f Mon Sep 17 00:00:00 2001 From: Alexander Efremov Date: Sun, 12 Jun 2016 12:53:52 +0700 Subject: [PATCH] modified XML docs --- Octokit.Reactive/Clients/IObservableAssigneesClient.cs | 8 ++++---- Octokit.Reactive/Clients/ObservableAssigneesClient.cs | 8 ++++---- Octokit/Clients/AssigneesClient.cs | 8 ++++---- Octokit/Clients/IAssigneesClient.cs | 8 ++++---- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Octokit.Reactive/Clients/IObservableAssigneesClient.cs b/Octokit.Reactive/Clients/IObservableAssigneesClient.cs index e3000d98..c1ca2374 100644 --- a/Octokit.Reactive/Clients/IObservableAssigneesClient.cs +++ b/Octokit.Reactive/Clients/IObservableAssigneesClient.cs @@ -15,14 +15,14 @@ namespace Octokit.Reactive /// /// The owner of the repository /// The name of the repository - /// A of representing assignees of specified repository. + /// A of s representing assignees of specified repository. IObservable GetAllForRepository(string owner, string name); /// /// Gets all the available assignees (owner + collaborators) to which issues may be assigned. /// /// The ID of the repository - /// A of representing assignees of specified repository. + /// A of s representing assignees of specified repository. IObservable GetAllForRepository(int repositoryId); /// @@ -31,7 +31,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The options to change API's behaviour. - /// A of representing assignees of specified repository. + /// A of s representing assignees of specified repository. IObservable GetAllForRepository(string owner, string name, ApiOptions options); /// @@ -39,7 +39,7 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The options to change API's behaviour. - /// A of representing assignees of specified repository. + /// A of s representing assignees of specified repository. IObservable GetAllForRepository(int repositoryId, ApiOptions options); /// diff --git a/Octokit.Reactive/Clients/ObservableAssigneesClient.cs b/Octokit.Reactive/Clients/ObservableAssigneesClient.cs index 60dfe5d9..f64f7bf1 100644 --- a/Octokit.Reactive/Clients/ObservableAssigneesClient.cs +++ b/Octokit.Reactive/Clients/ObservableAssigneesClient.cs @@ -28,7 +28,7 @@ namespace Octokit.Reactive /// /// The owner of the repository /// The name of the repository - /// A of representing assignees of specified repository. + /// A of s representing assignees of specified repository. public IObservable GetAllForRepository(string owner, string name) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -41,7 +41,7 @@ namespace Octokit.Reactive /// Gets all the available assignees (owner + collaborators) to which issues may be assigned. /// /// The ID of the repository - /// A of representing assignees of specified repository. + /// A of s representing assignees of specified repository. public IObservable GetAllForRepository(int repositoryId) { return GetAllForRepository(repositoryId, ApiOptions.None); @@ -53,7 +53,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The options to change API's behaviour. - /// A of representing assignees of specified repository. + /// A of s representing assignees of specified repository. public IObservable GetAllForRepository(string owner, string name, ApiOptions options) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -68,7 +68,7 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The options to change API's behaviour. - /// A of representing assignees of specified repository. + /// A of s representing assignees of specified repository. public IObservable GetAllForRepository(int repositoryId, ApiOptions options) { Ensure.ArgumentNotNull(options, "options"); diff --git a/Octokit/Clients/AssigneesClient.cs b/Octokit/Clients/AssigneesClient.cs index 74c8c31e..efa384c7 100644 --- a/Octokit/Clients/AssigneesClient.cs +++ b/Octokit/Clients/AssigneesClient.cs @@ -24,7 +24,7 @@ namespace Octokit /// /// The owner of the repository /// The name of the repository - /// A of representing assignees of specified repository. + /// A of s representing assignees of specified repository. public Task> GetAllForRepository(string owner, string name) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -37,7 +37,7 @@ namespace Octokit /// Gets all the available assignees (owner + collaborators) to which issues may be assigned. /// /// The ID of the repository - /// A of representing assignees of specified repository. + /// A of s representing assignees of specified repository. public Task> GetAllForRepository(int repositoryId) { return GetAllForRepository(repositoryId, ApiOptions.None); @@ -49,7 +49,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The options to change API's response. - /// A of representing assignees of specified repository. + /// A of s representing assignees of specified repository. public Task> GetAllForRepository(string owner, string name, ApiOptions options) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -66,7 +66,7 @@ namespace Octokit /// /// The ID of the repository /// The options to change API's response. - /// A of representing assignees of specified repository. + /// A of s representing assignees of specified repository. public Task> GetAllForRepository(int repositoryId, ApiOptions options) { Ensure.ArgumentNotNull(options, "options"); diff --git a/Octokit/Clients/IAssigneesClient.cs b/Octokit/Clients/IAssigneesClient.cs index 6154821d..24748a9c 100644 --- a/Octokit/Clients/IAssigneesClient.cs +++ b/Octokit/Clients/IAssigneesClient.cs @@ -16,14 +16,14 @@ namespace Octokit /// /// The owner of the repository /// The name of the repository - /// A of representing assignees of specified repository. + /// A of s representing assignees of specified repository. Task> GetAllForRepository(string owner, string name); /// /// Gets all the available assignees (owner + collaborators) to which issues may be assigned. /// /// The ID of the repository - /// A of representing assignees of specified repository. + /// A of s representing assignees of specified repository. Task> GetAllForRepository(int repositoryId); /// @@ -32,7 +32,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The options to change API's response. - /// A of representing assignees of specified repository. + /// A of s representing assignees of specified repository. Task> GetAllForRepository(string owner, string name, ApiOptions options); /// @@ -40,7 +40,7 @@ namespace Octokit /// /// The ID of the repository /// The options to change API's response. - /// A of representing assignees of specified repository. + /// A of s representing assignees of specified repository. Task> GetAllForRepository(int repositoryId, ApiOptions options); ///