Fixed typos and whitespace

This commit is contained in:
Kristian Hellang
2013-11-25 13:42:27 +01:00
parent 727429278e
commit e5009598f7
6 changed files with 6 additions and 8 deletions

View File

@@ -14,7 +14,7 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="reference">Tha name of the reference</param>
/// <param name="reference">The name of the reference</param>
/// <returns></returns>
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
Justification = "Method makes a network request")]

View File

@@ -27,7 +27,7 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="reference">Tha name of the reference</param>
/// <param name="reference">The name of the reference</param>
/// <returns></returns>
public IObservable<Reference> Get(string owner, string name, string reference)
{

View File

@@ -3,7 +3,6 @@ using System.Collections.Generic;
using System.Net;
using System.Threading.Tasks;
using NSubstitute;
using Octokit;
using Octokit.Internal;
using Octokit.Tests.Helpers;
using Xunit;
@@ -97,4 +96,4 @@ namespace Octokit.Tests.Clients
}
}
}
}
}

View File

@@ -2,7 +2,6 @@
using System.Collections.Generic;
using System.Linq;
using NSubstitute;
using Octokit;
using Octokit.Tests.Helpers;
using Xunit;
@@ -75,4 +74,4 @@ public class CommitsClientTests
Assert.Throws<ArgumentNullException>(() => new CommitsClient(null));
}
}
}
}

View File

@@ -14,7 +14,7 @@ namespace Octokit
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="reference">Tha name of the reference</param>
/// <param name="reference">The name of the reference</param>
/// <returns></returns>
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
Justification = "Method makes a network request")]

View File

@@ -18,7 +18,7 @@ namespace Octokit
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="reference">Tha name of the reference</param>
/// <param name="reference">The name of the reference</param>
/// <returns></returns>
public Task<Reference> Get(string owner, string name, string reference)
{