Finish up ObservableIssueCommentsClient

This commit is contained in:
pltaylor
2013-11-04 14:25:16 -05:00
parent 138b98901b
commit 6e2c2467e8
4 changed files with 26 additions and 29 deletions
@@ -4,7 +4,7 @@ using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
namespace Octokit.Reactive.Clients
namespace Octokit.Reactive
{
public interface IObservableIssueCommentsClient
{
@@ -27,7 +27,7 @@ namespace Octokit.Reactive.Clients
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <returns></returns>
IObservable<IssueComment> GetForRepository(string owner, string name);
IObservable<IReadOnlyList<IssueComment>> GetForRepository(string owner, string name);
/// <summary>
/// Gets Issue Comments for a specified Issue.
@@ -37,7 +37,7 @@ namespace Octokit.Reactive.Clients
/// <param name="name">The name of the repository</param>
/// <param name="number">The issue number</param>
/// <returns></returns>
IObservable<IssueComment> GetForIssue(string owner, string name, int number);
IObservable<IReadOnlyList<IssueComment>> GetForIssue(string owner, string name, int number);
/// <summary>
/// Creates a new Issue Comment for a specified Issue.