Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some misspellings in code, comments and xml docs. #1230

Merged
merged 31 commits into from
Apr 4, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
78f9aae
IAuthorizationsClient and AuthorizationsClient fixes
alexander-efremov Mar 29, 2016
655dde8
ApiUrls fixes.
alexander-efremov Mar 29, 2016
0a71cb4
Connection.cs fixes
alexander-efremov Mar 29, 2016
5c98093
IMiscellaneousClient and MiscellaneousClient fixes
alexander-efremov Mar 29, 2016
9dcfb2e
IRepositoriesClient and RepositoriesClient fixes.
alexander-efremov Mar 29, 2016
9ec62f5
IObservableAuthorizationsClient and ObservableAuthorizationsClient fixes
alexander-efremov Mar 29, 2016
29ada0c
IApiInfoProvider fixes
alexander-efremov Mar 29, 2016
fc644a0
ConnectionTests fixes
alexander-efremov Mar 29, 2016
bc0390e
IObservableMiscellaneousClient and ObservableMiscellaneousClient fixes
alexander-efremov Mar 29, 2016
570d70a
IObservableRepositoriesClient and ObservableRepositoriesClient fixes.
alexander-efremov Mar 29, 2016
1f11976
IAssigneesClient fixes
alexander-efremov Mar 29, 2016
7dc3c41
IRepositoryContentsClient and RepositoryContentsClient fixes
alexander-efremov Mar 29, 2016
4300c5e
RepositoryIssueRequest fixes
alexander-efremov Mar 29, 2016
8e7bfe6
RepositoryRequest fixes
alexander-efremov Mar 29, 2016
09582fc
SearchQualifierOperator fixes
alexander-efremov Mar 29, 2016
2fa41b7
SearchRepositoriesRequest fixes
alexander-efremov Mar 29, 2016
211cfb0
BranchProtection fixes
alexander-efremov Mar 29, 2016
903829a
License fixes
alexander-efremov Mar 29, 2016
a943928
Readme fixes
alexander-efremov Mar 29, 2016
b9b88a4
TagObject fixes
alexander-efremov Mar 29, 2016
b078c91
ReferencesClientTests fixes
alexander-efremov Mar 29, 2016
6c7e70b
ReleasesClientTests fixes
alexander-efremov Mar 29, 2016
02b5f37
RepositoryForksClientTests fixes
alexander-efremov Mar 29, 2016
31c2fb1
AuthorizationsClientTests fixes
alexander-efremov Mar 29, 2016
942d645
MiscellaneousClientTests fixes
alexander-efremov Mar 29, 2016
16c80d0
RepositoriesClientTests fixes
alexander-efremov Mar 29, 2016
ad44d4d
SearchClientTests fixes
alexander-efremov Mar 29, 2016
4e2691d
TeamsClientTests fixes
alexander-efremov Mar 29, 2016
b93f0ec
ObservableRepositoryDeployKeysClientTests fixes
alexander-efremov Mar 29, 2016
3d9402b
'Some misspellings were fixed'
alexander-efremov Mar 31, 2016
a51e17e
remove the PCL unpackaging when running on Travis
shiftkey Apr 3, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ os:
- osx
- linux
install:
- curl -sS http://storage.bos.xamarin.com/bot-provisioning/PortableReferenceAssemblies-2014-04-14.zip > /tmp/pcl-assemblies.zip
- unzip /tmp/pcl-assemblies.zip -d /tmp/pcl-assemblies && mv /tmp/pcl-assemblies/PortableReferenceAssemblies-2014-04-14 /tmp/pcl-assemblies/.NETPortable
- export XBUILD_FRAMEWORK_FOLDERS_PATH=/tmp/pcl-assemblies/
- nuget restore Octokit-Mono.sln
script:
- mono tools/nuget/NuGet.exe restore Octokit-Mono.sln
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ IObservable<ApplicationAuthorization> GetOrCreateApplicationAuthentication(
IObservable<ApplicationAuthorization> CheckApplicationAuthentication(string clientId, string accessToken);

/// <summary>
/// Resets a valid OAuth token for an OAuth application without end user involvment.
/// Resets a valid OAuth token for an OAuth application without end user involvement.
/// </summary>
/// <remarks>
/// This method requires authentication.
Expand Down
2 changes: 1 addition & 1 deletion Octokit.Reactive/Clients/IObservableMiscellaneousClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public interface IObservableMiscellaneousClient
IObservable<LicenseMetadata> GetAllLicenses();

/// <summary>
/// Retrieves a license based on the licence key such as "mit"
/// Retrieves a license based on the license key such as "mit"
/// </summary>
/// <param name="key"></param>
/// <returns>A <see cref="License" /> that includes the license key, text, and attributes of the license.</returns>
Expand Down
4 changes: 2 additions & 2 deletions Octokit.Reactive/Clients/IObservableRepositoriesClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public interface IObservableRepositoriesClient
/// <summary>
/// Creates a new repository in the specified organization.
/// </summary>
/// <param name="organizationLogin">The login of the organization in which to create the repostiory</param>
/// <param name="organizationLogin">The login of the organization in which to create the repository</param>
/// <param name="newRepository">A <see cref="NewRepository"/> instance describing the new repository to create</param>
/// <returns>An <see cref="IObservable{Repository}"/> instance for the created repository</returns>
IObservable<Repository> Create(string organizationLogin, NewRepository newRepository);
Expand Down Expand Up @@ -256,7 +256,7 @@ public interface IObservableRepositoriesClient
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <returns>All of the repositorys tags.</returns>
/// <returns>All of the repositories tags.</returns>
IObservable<RepositoryTag> GetAllTags(string owner, string name);

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion Octokit.Reactive/Clients/ObservableAuthorizationsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public IObservable<ApplicationAuthorization> CheckApplicationAuthentication(stri
}

/// <summary>
/// Resets a valid OAuth token for an OAuth application without end user involvment.
/// Resets a valid OAuth token for an OAuth application without end user involvement.
/// </summary>
/// <remarks>
/// This method requires authentication.
Expand Down
2 changes: 1 addition & 1 deletion Octokit.Reactive/Clients/ObservableMiscellaneousClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public IObservable<LicenseMetadata> GetAllLicenses()
}

/// <summary>
/// Retrieves a license based on the licence key such as "mit"
/// Retrieves a license based on the license key such as "mit"
/// </summary>
/// <param name="key"></param>
/// <returns>A <see cref="License" /> that includes the license key, text, and attributes of the license.</returns>
Expand Down
4 changes: 2 additions & 2 deletions Octokit.Reactive/Clients/ObservableRepositoriesClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public IObservable<Repository> Create(NewRepository newRepository)
/// <summary>
/// Creates a new repository in the specified organization.
/// </summary>
/// <param name="organizationLogin">The login of the organization in which to create the repostiory</param>
/// <param name="organizationLogin">The login of the organization in which to create the repository</param>
/// <param name="newRepository">A <see cref="NewRepository"/> instance describing the new repository to create</param>
/// <returns>An <see cref="IObservable{Repository}"/> instance for the created repository</returns>
public IObservable<Repository> Create(string organizationLogin, NewRepository newRepository)
Expand Down Expand Up @@ -374,7 +374,7 @@ public IObservable<Team> GetAllTeams(string owner, string name)
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <returns>All of the repositorys tags.</returns>
/// <returns>All of the repositories tags.</returns>
public IObservable<RepositoryTag> GetAllTags(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Expand Down
3 changes: 1 addition & 2 deletions Octokit.Tests.Integration/Clients/ReferencesClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using System.Linq;
using System.Threading.Tasks;
using Octokit;
using Octokit.Tests.Helpers;
using Octokit.Tests.Integration;
using Xunit;
using Octokit.Tests.Integration.Helpers;
Expand Down Expand Up @@ -37,7 +36,7 @@ public async Task CanGetAReference()
}

[IntegrationTest]
public async Task WhenReferenceDoesNotExistAnExeptionIsThrown()
public async Task WhenReferenceDoesNotExistAnExceptionIsThrown()
{
await Assert.ThrowsAsync<NotFoundException>(
() => _fixture.Get("octokit", "octokit.net", "heads/foofooblahblah"));
Expand Down
6 changes: 3 additions & 3 deletions Octokit.Tests.Integration/Clients/ReleasesClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -319,9 +319,9 @@ public async Task CanDownloadBinaryAsset()
using (var zipstream = new MemoryStream((byte[])response.Body))
using (var archive = new ZipArchive(zipstream))
{
var enttry = archive.Entries[0];
var data = new byte[enttry.Length];
await enttry.Open().ReadAsync(data, 0, data.Length);
var entry = archive.Entries[0];
var data = new byte[entry.Length];
await entry.Open().ReadAsync(data, 0, data.Length);
textContent = Encoding.ASCII.GetString(data);
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Linq;
using System.Linq;
using System.Threading.Tasks;
using Xunit;

Expand Down Expand Up @@ -41,7 +40,7 @@ public class TheCreateMethod
[IntegrationTest]
public async Task ForkCreatedForUserLoggedIn()
{
// The fork is created asynchronially by github and therefore it cannot
// The fork is created asynchronously by github and therefore it cannot
// be certain that the repo exists when the test ends. It is therefore deleted
// before the test starts instead of after.
Helper.DeleteRepo(Helper.Credentials.Login, "octokit.net");
Expand All @@ -58,7 +57,7 @@ public async Task ForkCreatedForUserLoggedIn()
[OrganizationTest]
public async Task ForkCreatedForOrganization()
{
// The fork is created asynchronially by github and therefore it cannot
// The fork is created asynchronously by github and therefore it cannot
// be certain that the repo exists when the test ends. It is therefore deleted
// before the test starts.
Helper.DeleteRepo(Helper.Organization, "octokit.net");
Expand Down
2 changes: 1 addition & 1 deletion Octokit.Tests.Integration/Octokit.Tests.Integration.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Helper.cs" />
<Compile Include="Clients\UsersClientTests.cs" />
<Compile Include="Reactive\ObservableRespositoryDeployKeysClientTests.cs" />
<Compile Include="Reactive\ObservableRepositoryDeployKeysClientTests.cs" />
<Compile Include="Reactive\ObservableUserAdministrationClientTests.cs" />
<Compile Include="Reactive\ObservableUserEmailsClientTests.cs" />
<Compile Include="Reactive\ObservableTeamsClientTests.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
using Octokit.Tests.Integration;
using Xunit;

public class ObservableRespositoryDeployKeysClientTests : IDisposable
public class ObservableRepositoryDeployKeysClientTests : IDisposable
{
const string _key = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDB8IE5+RppLpeW+6lqo0fpfvMunKg6W4bhYCfVJIOYbpKoHP95nTUMZPBT++9NLeB4/YsuNTCrrpnpjc4f2IVpGvloRiVXjAzoJk9QIL6uzn1zRFdvaxSJ3Urhe9LcLHcIgccgZgSdWGzaZI3xtMvGC4diwWNsPjvVc/RyDM/MPqAim0X5XVOQwEFsSsUSraezJ+VgYMYzLYBcKWW0B86HVVhL4ZtmcY/RN2544bljnzw2M3aQvXNPTvkuiUoqLOI+5/qzZ8PfkruO55YtweEd0lkY6oZvrBPMD6dLODEqMHb4tD6htx60wSipNqjPwpOMpzp0Bk3G909unVXi6Fw5";
const string _keyTitle = "octokit@github";
ObservableRepositoryDeployKeysClient _client;
Repository _repository;
string _owner;

public ObservableRespositoryDeployKeysClientTests()
public ObservableRepositoryDeployKeysClientTests()
{
var github = Helper.GetAuthenticatedClient();

Expand Down
2 changes: 1 addition & 1 deletion Octokit.Tests/Clients/AuthorizationsClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ public async Task EnsuresArgumentsNotNull()
public class TheRevokeApplicationAuthenticationMethod
{
[Fact]
public async Task RevokesApplicatonAuthenticationAtCorrectUrl()
public async Task RevokesApplicationAuthenticationAtCorrectUrl()
{
var client = Substitute.For<IApiConnection>();
var authEndpoint = new AuthorizationsClient(client);
Expand Down
2 changes: 1 addition & 1 deletion Octokit.Tests/Clients/MiscellaneousClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public async Task RequestsTheEmojiEndpoint()
public class TheGetResourceRateLimitsMethod
{
[Fact]
public async Task RequestsTheRecourceRateLimitEndpoint()
public async Task RequestsTheResourceRateLimitEndpoint()
{
IApiResponse<MiscellaneousRateLimit> response = new ApiResponse<MiscellaneousRateLimit>
(
Expand Down
3 changes: 1 addition & 2 deletions Octokit.Tests/Clients/RepositoriesClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using System.Net;
using System.Threading.Tasks;
using NSubstitute;
using Octokit.Tests.Helpers;
using Xunit;

namespace Octokit.Tests.Clients
Expand Down Expand Up @@ -119,7 +118,7 @@ public async Task EnsuresNonNullArguments()
}

[Fact]
public async Task UsesTheOrganizatinosReposUrl()
public async Task UsesTheOrganizationsReposUrl()
{
var connection = Substitute.For<IApiConnection>();
var client = new RepositoriesClient(connection);
Expand Down
8 changes: 4 additions & 4 deletions Octokit.Tests/Clients/SearchClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ public void TestingTheStarsQualifier()
{
var connection = Substitute.For<IApiConnection>();
var client = new SearchClient(connection);
//get repos whos stargazers are greater than 500
//get repos who's stargazers are greater than 500
var request = new SearchRepositoriesRequest("github");
request.Stars = Range.GreaterThan(500);
client.SearchRepo(request);
Expand All @@ -391,7 +391,7 @@ public void TestingTheStarsQualifier_LessThan()
{
var connection = Substitute.For<IApiConnection>();
var client = new SearchClient(connection);
//get repos whos stargazers are less than 500
//get repos who's stargazers are less than 500
var request = new SearchRepositoriesRequest("github");
request.Stars = Range.LessThan(500);
client.SearchRepo(request);
Expand All @@ -405,7 +405,7 @@ public void TestingTheStarsQualifier_LessThanOrEquals()
{
var connection = Substitute.For<IApiConnection>();
var client = new SearchClient(connection);
//get repos whos stargazers are less than 500 or equal to
//get repos who's stargazers are less than 500 or equal to
var request = new SearchRepositoriesRequest("github");
request.Stars = Range.LessThanOrEquals(500);
client.SearchRepo(request);
Expand Down Expand Up @@ -445,7 +445,7 @@ public void TestingTheLangaugeQualifier()
{
var connection = Substitute.For<IApiConnection>();
var client = new SearchClient(connection);
//get repos whos language is Ruby
//get repos who's language is Ruby
var request = new SearchRepositoriesRequest("github");
request.Language = Language.Ruby;
client.SearchRepo(request);
Expand Down
3 changes: 1 addition & 2 deletions Octokit.Tests/Clients/TeamsClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using System.Collections.Generic;
using System.Threading.Tasks;
using NSubstitute;
using Octokit.Tests.Helpers;
using Xunit;

namespace Octokit.Tests.Clients
Expand All @@ -25,7 +24,7 @@ public void EnsuresNonNullArguments()
public class TheGetMethod
{
[Fact]
public void RequestsTheCorrectlUrl()
public void RequestsTheCorrectUrl()
{
var connection = Substitute.For<IApiConnection>();
var client = new TeamsClient(connection);
Expand Down
4 changes: 1 addition & 3 deletions Octokit.Tests/Http/ConnectionTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@
using System.Threading;
using System.Threading.Tasks;
using NSubstitute;
using NSubstitute.Core.Arguments;
using Octokit.Internal;
using Octokit.Tests.Helpers;
using Xunit;

namespace Octokit.Tests.Http
Expand Down Expand Up @@ -44,7 +42,7 @@ public async Task SendsProperlyFormattedRequest()
}

[Fact]
public async Task CanMakeMutipleRequestsWithSameConnection()
public async Task CanMakeMultipleRequestsWithSameConnection()
{
var httpClient = Substitute.For<IHttpClient>();
IResponse response = new Response();
Expand Down
2 changes: 1 addition & 1 deletion Octokit/Clients/AuthorizationsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ public async Task<ApplicationAuthorization> CheckApplicationAuthentication(strin
}

/// <summary>
/// Resets a valid OAuth token for an OAuth application without end user involvment.
/// Resets a valid OAuth token for an OAuth application without end user involvement.
/// </summary>
/// <remarks>
/// This method requires authentication.
Expand Down
2 changes: 1 addition & 1 deletion Octokit/Clients/IAssigneesClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public interface IAssigneesClient
/// </summary>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="options">The options to chagne API's response.</param>
/// <param name="options">The options to change API's response.</param>
/// <returns></returns>
Task<IReadOnlyList<User>> GetAllForRepository(string owner, string name, ApiOptions options);

Expand Down
2 changes: 1 addition & 1 deletion Octokit/Clients/IAuthorizationsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ Task<ApplicationAuthorization> GetOrCreateApplicationAuthentication(
Task<ApplicationAuthorization> CheckApplicationAuthentication(string clientId, string accessToken);

/// <summary>
/// Resets a valid OAuth token for an OAuth application without end user involvment.
/// Resets a valid OAuth token for an OAuth application without end user involvement.
/// </summary>
/// <remarks>
/// This method requires authentication.
Expand Down
2 changes: 1 addition & 1 deletion Octokit/Clients/IMiscellaneousClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public interface IMiscellaneousClient
Task<IReadOnlyList<LicenseMetadata>> GetAllLicenses();

/// <summary>
/// Retrieves a license based on the licence key such as "mit"
/// Retrieves a license based on the license key such as "mit"
/// </summary>
/// <param name="key"></param>
/// <returns>A <see cref="License" /> that includes the license key, text, and attributes of the license.</returns>
Expand Down
4 changes: 2 additions & 2 deletions Octokit/Clients/IRepositoriesClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public interface IRepositoriesClient
/// <remarks>
/// See the <a href="http://developer.github.com/v3/repos/#create">API documentation</a> for more information.
/// </remarks>
/// <param name="organizationLogin">Login of the organization in which to create the repostiory</param>
/// <param name="organizationLogin">Login of the organization in which to create the repository</param>
/// <param name="newRepository">A <see cref="NewRepository"/> instance describing the new repository to create</param>
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
/// <returns>A <see cref="Repository"/> instance for the created repository</returns>
Expand Down Expand Up @@ -351,7 +351,7 @@ public interface IRepositoriesClient
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <returns>All of the repositorys tags.</returns>
/// <returns>All of the repositories tags.</returns>
Task<IReadOnlyList<RepositoryTag>> GetAllTags(string owner, string name);

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion Octokit/Clients/IRepositoryContentsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public interface IRepositoryContentsClient
Task<Readme> GetReadme(string owner, string name);

/// <summary>
/// Gets the perferred README's HTML for the specified repository.
/// Gets the preferred README's HTML for the specified repository.
/// </summary>
/// <remarks>
/// See the <a href="http://developer.github.com/v3/repos/contents/#get-the-readme">API documentation</a> for more information.
Expand Down
2 changes: 1 addition & 1 deletion Octokit/Clients/MiscellaneousClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public async Task<IReadOnlyList<LicenseMetadata>> GetAllLicenses()
}

/// <summary>
/// Retrieves a license based on the licence key such as "mit"
/// Retrieves a license based on the license key such as "mit"
/// </summary>
/// <param name="key"></param>
/// <returns>A <see cref="License" /> that includes the license key, text, and attributes of the license.</returns>
Expand Down
4 changes: 2 additions & 2 deletions Octokit/Clients/RepositoriesClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public Task<Repository> Create(NewRepository newRepository)
/// <remarks>
/// See the <a href="http://developer.github.com/v3/repos/#create">API documentation</a> for more information.
/// </remarks>
/// <param name="organizationLogin">Login of the organization in which to create the repostiory</param>
/// <param name="organizationLogin">Login of the organization in which to create the repository</param>
/// <param name="newRepository">A <see cref="NewRepository"/> instance describing the new repository to create</param>
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
/// <returns>A <see cref="Repository"/> instance for the created repository</returns>
Expand Down Expand Up @@ -551,7 +551,7 @@ public Task<IReadOnlyList<Team>> GetAllTeams(string owner, string name)
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <returns>All of the repositorys tags.</returns>
/// <returns>All of the repositories tags.</returns>
public Task<IReadOnlyList<RepositoryTag>> GetAllTags(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Expand Down
2 changes: 1 addition & 1 deletion Octokit/Clients/RepositoryContentsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public async Task<Readme> GetReadme(string owner, string name)
}

/// <summary>
/// Gets the perferred README's HTML for the specified repository.
/// Gets the preferred README's HTML for the specified repository.
/// </summary>
/// <remarks>
/// See the <a href="http://developer.github.com/v3/repos/contents/#get-the-readme">API documentation</a> for more information.
Expand Down
Loading