diff --git a/Octokit/Models/Request/RepositoryRequest.cs b/Octokit/Models/Request/RepositoryRequest.cs
index 0c44a2f1..75083c97 100644
--- a/Octokit/Models/Request/RepositoryRequest.cs
+++ b/Octokit/Models/Request/RepositoryRequest.cs
@@ -41,15 +41,15 @@ namespace Octokit
/// 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 @@ namespace Octokit
FullName
}
-
+ ///
+ /// The properties that repositories can be visibled by.
+ ///
public enum RepositoryVisibility
{
///
@@ -137,10 +139,11 @@ namespace Octokit
/// Return both public and private repositories
///
All,
-
}
-
+ ///
+ /// The properties that repositories can be affiliated by.
+ ///
public enum RepositoryAffiliation
{
///
@@ -183,6 +186,5 @@ namespace Octokit
///
[Parameter(Value = "owner, collaborator, organization_member")]
All
-
}
}