From 9dcfb2e4264f09639354acd277459ebc67d404fd Mon Sep 17 00:00:00 2001 From: "aedampir@gmail.com" Date: Tue, 29 Mar 2016 17:37:22 +0700 Subject: [PATCH] IRepositoriesClient and RepositoriesClient fixes. --- Octokit/Clients/IRepositoriesClient.cs | 4 ++-- Octokit/Clients/RepositoriesClient.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Octokit/Clients/IRepositoriesClient.cs b/Octokit/Clients/IRepositoriesClient.cs index 098e03d0..0989d99f 100644 --- a/Octokit/Clients/IRepositoriesClient.cs +++ b/Octokit/Clients/IRepositoriesClient.cs @@ -73,7 +73,7 @@ namespace Octokit /// /// See the API documentation for more information. /// - /// Login of the organization in which to create the repostiory + /// Login of the organization in which to create the repository /// A instance describing the new repository to create /// Thrown when a general API error occurs. /// A instance for the created repository @@ -351,7 +351,7 @@ namespace Octokit /// /// The owner of the repository /// The name of the repository - /// All of the repositorys tags. + /// All of the repositories tags. Task> GetAllTags(string owner, string name); /// diff --git a/Octokit/Clients/RepositoriesClient.cs b/Octokit/Clients/RepositoriesClient.cs index 9f14ac78..1619ae37 100644 --- a/Octokit/Clients/RepositoriesClient.cs +++ b/Octokit/Clients/RepositoriesClient.cs @@ -69,7 +69,7 @@ namespace Octokit /// /// See the API documentation for more information. /// - /// Login of the organization in which to create the repostiory + /// Login of the organization in which to create the repository /// A instance describing the new repository to create /// Thrown when a general API error occurs. /// A instance for the created repository @@ -551,7 +551,7 @@ namespace Octokit /// /// The owner of the repository /// The name of the repository - /// All of the repositorys tags. + /// All of the repositories tags. public Task> GetAllTags(string owner, string name) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner");