From dea45fa0aae08bccd42112dac9cb94ef4b9747a8 Mon Sep 17 00:00:00 2001 From: Haacked Date: Wed, 30 Oct 2013 14:50:29 -0700 Subject: [PATCH] Doing what I can to keep shiftkey and half-ogre happy --- Octokit/Clients/RepositoriesClient.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Octokit/Clients/RepositoriesClient.cs b/Octokit/Clients/RepositoriesClient.cs index 250faffd..d960e0d1 100644 --- a/Octokit/Clients/RepositoriesClient.cs +++ b/Octokit/Clients/RepositoriesClient.cs @@ -185,6 +185,14 @@ namespace Octokit return await ApiConnection.GetHtml(endpoint, null); } + /// + /// A client for GitHub's Commit Status API. + /// + /// + /// See the Commit Status API documentation for more + /// details. Also check out the blog post + /// that announced this feature. + /// public ICommitStatusClient CommitStatus { get; private set; } } }