From 570d70ab314bc957c8361fe06f94befe47d2e305 Mon Sep 17 00:00:00 2001 From: "aedampir@gmail.com" Date: Tue, 29 Mar 2016 17:39:31 +0700 Subject: [PATCH] IObservableRepositoriesClient and ObservableRepositoriesClient fixes. --- Octokit.Reactive/Clients/IObservableRepositoriesClient.cs | 4 ++-- Octokit.Reactive/Clients/ObservableRepositoriesClient.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs b/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs index 123860bc..8f47b4fe 100644 --- a/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs +++ b/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs @@ -16,7 +16,7 @@ namespace Octokit.Reactive /// /// Creates a new repository in the specified organization. /// - /// The login of the organization in which to create the repostiory + /// The login of the organization in which to create the repository /// A instance describing the new repository to create /// An instance for the created repository IObservable Create(string organizationLogin, NewRepository newRepository); @@ -256,7 +256,7 @@ namespace Octokit.Reactive /// /// The owner of the repository /// The name of the repository - /// All of the repositorys tags. + /// All of the repositories tags. IObservable GetAllTags(string owner, string name); /// diff --git a/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs b/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs index 005270bb..d7d7d4cd 100644 --- a/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs +++ b/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs @@ -61,7 +61,7 @@ namespace Octokit.Reactive /// /// Creates a new repository in the specified organization. /// - /// The login of the organization in which to create the repostiory + /// The login of the organization in which to create the repository /// A instance describing the new repository to create /// An instance for the created repository public IObservable Create(string organizationLogin, NewRepository newRepository) @@ -374,7 +374,7 @@ namespace Octokit.Reactive /// /// The owner of the repository /// The name of the repository - /// All of the repositorys tags. + /// All of the repositories tags. public IObservable GetAllTags(string owner, string name) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner");