Skip to content

Commit

Permalink
fixed typo and improved formatting in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Sarmad93 committed Feb 8, 2016
1 parent 30553d3 commit d7cb562
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions Octokit/Models/Request/RepositoryRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ public class RepositoryRequest : RequestParameters
/// Gets or sets the visibility property.
/// </summary>
/// <value>
/// The no.
/// The visibility.
/// </value>
public RepositoryVisibility Visibility { get; set; }

/// <summary>
/// Gets or sets The affiliation property.
/// Gets or sets the affiliation property.
/// </summary>
/// <value>
/// The owner.
/// The affiliation.
/// </value>
public RepositoryAffiliation Affiliation { get; set; }

Expand Down Expand Up @@ -120,7 +120,9 @@ public enum RepositorySort
FullName
}


/// <summary>
/// The properties that repositories can be visibled by.
/// </summary>
public enum RepositoryVisibility
{
/// <summary>
Expand All @@ -137,10 +139,11 @@ public enum RepositoryVisibility
/// Return both public and private repositories
/// </summary>
All,

}


/// <summary>
/// The properties that repositories can be affiliated by.
/// </summary>
public enum RepositoryAffiliation
{
/// <summary>
Expand Down Expand Up @@ -183,6 +186,5 @@ public enum RepositoryAffiliation
/// </summary>
[Parameter(Value = "owner, collaborator, organization_member")]
All

}
}

0 comments on commit d7cb562

Please sign in to comment.