tidy up some xml-docs while i'm in here

This commit is contained in:
Brendan Forster
2015-11-02 17:48:39 -08:00
parent 50a2b97c17
commit bfb0559351
8 changed files with 64 additions and 7 deletions
@@ -167,11 +167,21 @@ namespace Octokit
Task DeleteFile(string owner, string name, string path, DeleteFileRequest request);
}
/// <summary>
/// The archive format to return from the server
/// </summary>
public enum ArchiveFormat
{
/// <summary>
/// The TAR archive format
/// </summary>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Tarball")]
[Parameter(Value = "tarball")]
Tarball,
/// <summary>
/// The ZIP archive format
/// </summary>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Zipball")]
[Parameter(Value = "zipball")]
Zipball