From 3abc2183243e5b5c9a6e162268f646fbc2a65156 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20B=C3=B6hlmark?= Date: Sun, 12 Oct 2014 01:25:31 +0200 Subject: [PATCH] Fix a few documentation typos in NewRepository --- Octokit/Models/Request/NewRepository.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }