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");