From b377d27a2ca61d6c90f5111bc774d7122d1852b6 Mon Sep 17 00:00:00 2001 From: Eilon Lipton Date: Sun, 30 Aug 2015 08:49:24 -0700 Subject: [PATCH] #875 fixing doc comments on Issue type --- Octokit/Models/Response/Issue.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Octokit/Models/Response/Issue.cs b/Octokit/Models/Response/Issue.cs index ae68304a1e..cfac7a35c6 100644 --- a/Octokit/Models/Response/Issue.cs +++ b/Octokit/Models/Response/Issue.cs @@ -32,10 +32,13 @@ public Issue(Uri url, Uri htmlUrl, int number, ItemState state, string title, st } /// - /// The URL for this milestone. + /// The URL for this issue. /// public Uri Url { get; protected set; } + /// + /// The URL for the HTML view of this issue. + /// public Uri HtmlUrl { get; protected set; } ///