Added doc comment for property

This commit is contained in:
Haacked
2013-10-30 14:48:52 -07:00
parent 3c428be5bc
commit b4f56f3d5e
2 changed files with 10 additions and 0 deletions
@@ -89,6 +89,14 @@ namespace Octokit.Reactive
/// <returns></returns>
IObservable<string> GetReadmeHtml(string owner, string name);
/// <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>
IObservableCommitStatusClient CommitStatus { get; }
}
}