Add some xmldoc for the PullRequestMergeMethod enum and values

This commit is contained in:
Ryan Gribble
2016-09-29 12:49:26 +10:00
parent 37048d106b
commit 4a67f19ced
@@ -48,10 +48,24 @@ namespace Octokit
}
}
/// <summary>
/// Method to use when merging a PR
/// </summary>
public enum PullRequestMergeMethod
{
/// <summary>
/// Create a merge commit
/// </summary>
Merge,
/// <summary>
/// Squash and merge
/// </summary>
Squash,
/// <summary>
/// Rebase and merge
/// </summary>
Rebase
}
}