diff --git a/Octokit/Models/Request/NewRepository.cs b/Octokit/Models/Request/NewRepository.cs index dab22dd2..60d846bf 100644 --- a/Octokit/Models/Request/NewRepository.cs +++ b/Octokit/Models/Request/NewRepository.cs @@ -22,17 +22,17 @@ namespace Octokit public string Description { get; set; } /// s - /// Optional. Gets or sets whether to the enable downloads for the new repository. The default is true. + /// Optional. Gets or sets whether to enable downloads for the new repository. The default is true. /// public bool? HasDownloads { get; set; } /// s - /// Optional. Gets or sets whether to the enable issues for the new repository. The default is true. + /// Optional. Gets or sets whether to enable issues for the new repository. The default is true. /// public bool? HasIssues { get; set; } /// s - /// Optional. Gets or sets whether to the enable the wiki for the new repository. The default is true. + /// Optional. Gets or sets whether to enable the wiki for the new repository. The default is true. /// public bool? HasWiki { get; set; }