From d7cb5620feeb588109c2f7ebbca79937d4745258 Mon Sep 17 00:00:00 2001 From: Sarmad Date: Mon, 8 Feb 2016 16:22:41 +0500 Subject: [PATCH] fixed typo and improved formatting in comments --- Octokit/Models/Request/RepositoryRequest.cs | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Octokit/Models/Request/RepositoryRequest.cs b/Octokit/Models/Request/RepositoryRequest.cs index 0c44a2f1f5..75083c97d9 100644 --- a/Octokit/Models/Request/RepositoryRequest.cs +++ b/Octokit/Models/Request/RepositoryRequest.cs @@ -41,15 +41,15 @@ public class RepositoryRequest : RequestParameters /// Gets or sets the visibility property. /// /// - /// The no. + /// The visibility. /// public RepositoryVisibility Visibility { get; set; } /// - /// Gets or sets The affiliation property. + /// Gets or sets the affiliation property. /// /// - /// The owner. + /// The affiliation. /// public RepositoryAffiliation Affiliation { get; set; } @@ -120,7 +120,9 @@ public enum RepositorySort FullName } - + /// + /// The properties that repositories can be visibled by. + /// public enum RepositoryVisibility { /// @@ -137,10 +139,11 @@ public enum RepositoryVisibility /// Return both public and private repositories /// All, - } - + /// + /// The properties that repositories can be affiliated by. + /// public enum RepositoryAffiliation { /// @@ -183,6 +186,5 @@ public enum RepositoryAffiliation /// [Parameter(Value = "owner, collaborator, organization_member")] All - } }