From 110ffa705f4d8a0f1ebdd6db655b17fa577c23bb Mon Sep 17 00:00:00 2001 From: Henrik Andersson Date: Mon, 5 Oct 2015 13:19:19 +1000 Subject: [PATCH] Fix up XML comments as per PR review --- Octokit/Models/Request/NewRepositoryHook.cs | 6 +++--- Octokit/Models/Request/NewRepositoryWebHook.cs | 14 +++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Octokit/Models/Request/NewRepositoryHook.cs b/Octokit/Models/Request/NewRepositoryHook.cs index 7e696238..2a651cf6 100644 --- a/Octokit/Models/Request/NewRepositoryHook.cs +++ b/Octokit/Models/Request/NewRepositoryHook.cs @@ -18,8 +18,8 @@ namespace Octokit /// /// content_type /// - /// An optional string defining the media type used to serialize the payloads.Supported values include json and - /// form.The default is form. + /// An optional string defining the media type used to serialize the payloads. Supported values include json and + /// form. The default is form. /// /// /// @@ -33,7 +33,7 @@ namespace Octokit /// insecure_ssl: /// /// An optional string that determines whether the SSL certificate of the host for url will be verified when - /// delivering payloads.Supported values include "0" (verification is performed) and "1" (verification is not + /// delivering payloads. Supported values include "0" (verification is performed) and "1" (verification is not /// performed). The default is "0". /// /// diff --git a/Octokit/Models/Request/NewRepositoryWebHook.cs b/Octokit/Models/Request/NewRepositoryWebHook.cs index 2f3e2047..2c73d06c 100644 --- a/Octokit/Models/Request/NewRepositoryWebHook.cs +++ b/Octokit/Models/Request/NewRepositoryWebHook.cs @@ -18,8 +18,8 @@ namespace Octokit /// /// content_type /// - /// An optional string defining the media type used to serialize the payloads.Supported values include json and - /// form.The default is form. + /// An optional string defining the media type used to serialize the payloads. Supported values include json and + /// form. The default is form. /// /// /// @@ -33,7 +33,7 @@ namespace Octokit /// insecure_ssl: /// /// An optional string that determines whether the SSL certificate of the host for url will be verified when - /// delivering payloads.Supported values include "0" (verification is performed) and "1" (verification is not + /// delivering payloads. Supported values include "0" (verification is performed) and "1" (verification is not /// performed). The default is "0". /// /// @@ -46,10 +46,10 @@ namespace Octokit public class NewRepositoryWebHook : NewRepositoryHook { /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// Using default values for ContentType, Secret and InsecureSsl. /// - /// Use web for a webhook or use the name of a valid service. (See /hooks for the list of valid service names.) + /// /// Use "web" for a webhook or use the name of a valid service. (See /// https://api.github.com/hooks for the list of valid service /// names.) @@ -57,7 +57,7 @@ namespace Octokit /// /// Key/value pairs to provide settings for this hook. These settings vary between the services and are /// defined in the github-services repository. Booleans are stored internally as “1” for true, and “0” for - /// false. Any JSON true/false values will be converted automatically. + /// false. Any true/false values will be converted automatically. /// /// /// A required string defining the URL to which the payloads will be delivered. @@ -99,7 +99,7 @@ namespace Octokit public string Secret { get; set; } /// - /// Gets wether the SSL certificate of the host will be verified when + /// Gets whether the SSL certificate of the host will be verified when /// delivering payloads. The default is `false`. /// ///