Doing what I can to keep shiftkey and half-ogre happy

This commit is contained in:
Haacked
2013-10-30 14:50:29 -07:00
parent b4f56f3d5e
commit dea45fa0aa
+8
View File
@@ -185,6 +185,14 @@ namespace Octokit
return await ApiConnection.GetHtml(endpoint, null);
}
/// <summary>
/// A client for GitHub's Commit Status API.
/// </summary>
/// <remarks>
/// See the <a href="http://developer.github.com/v3/repos/statuses/">Commit Status API documentation</a> for more
/// details. Also check out the <a href="https://github.com/blog/1227-commit-status-api">blog post</a>
/// that announced this feature.
/// </remarks>
public ICommitStatusClient CommitStatus { get; private set; }
}
}