Documented missing properties; Whitespace and typo tomfoolery patched

This commit is contained in:
Josh Sullivan
2013-11-05 11:44:54 -05:00
committed by Brendan Forster
parent 6323b62f71
commit a67ce05cef
3 changed files with 20 additions and 4 deletions
-2
View File
@@ -24,7 +24,5 @@ namespace Octokit
/// Whether the pull request is open or closed. The default is <see cref="ItemState.Open"/>.
/// </summary>
public ItemState State { get; set; }
}
}
+9 -2
View File
@@ -9,12 +9,19 @@ namespace Octokit
State = ItemState.Open;
}
/// <summary>
/// "open" or "closed" to filter by state. Default is "open".
/// </summary>
public ItemState State { get; set; }
[Parameter(Key = "head")]
/// <summary>
/// Filter pulls by head user and branch name in the format of "user:ref-name".
/// </summary>
public string Head { get; set; }
[Parameter(Key = "base")]
/// <summary>
/// Filter pulls by base branch name.
/// </summary>
public string Base { get; set; }
}
}
+11
View File
@@ -14,8 +14,19 @@ namespace Octokit
/// </summary>
public int Number { get; set; }
/// <summary>
/// The URL for the pull request page.
/// </summary>
public Uri HtmlUrl { get; set; }
/// <summary>
/// The URL for the pull request's diff (.diff) file.
/// </summary>
public Uri DiffUrl { get; set; }
/// <summary>
/// The URL for the pull request's patch (.patch) file.
/// </summary>
public Uri PatchUrl { get; set; }
}
}