generate those xml-docs

This commit is contained in:
Brendan Forster
2014-03-14 15:48:55 +11:00
parent 9cc582a034
commit 460232b522
+9 -1
View File
@@ -1,4 +1,4 @@
using System.Threading.Tasks;
using System.Threading.Tasks;
namespace Octokit
{
@@ -11,6 +11,14 @@ namespace Octokit
_apiConnection = apiConnection;
}
/// <summary>
/// Compare two references in a repository
/// </summary>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="base">The reference to use as the base commit</param>
/// <param name="head">The reference to use as the head commit</param>
/// <returns></returns>
public Task<CompareResult> Compare(string owner, string name, string @base, string head)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");