diff --git a/Octokit.Reactive/Clients/IObservableAssigneesClient.cs b/Octokit.Reactive/Clients/IObservableAssigneesClient.cs index 8fbe7d99..90dc9bb3 100644 --- a/Octokit.Reactive/Clients/IObservableAssigneesClient.cs +++ b/Octokit.Reactive/Clients/IObservableAssigneesClient.cs @@ -20,7 +20,7 @@ namespace Octokit.Reactive /// /// Gets all the available assignees (owner + collaborators) to which issues may be assigned. /// - /// The ID of the repository + /// The Id of the repository IObservable GetAllForRepository(int repositoryId); /// @@ -34,7 +34,7 @@ namespace Octokit.Reactive /// /// Gets all the available assignees (owner + collaborators) to which issues may be assigned. /// - /// The ID of the repository + /// The Id of the repository /// The options to change API's behaviour. IObservable GetAllForRepository(int repositoryId, ApiOptions options); @@ -49,7 +49,7 @@ namespace Octokit.Reactive /// /// Checks to see if a user is an assignee for a repository. /// - /// The ID of the repository + /// The Id of the repository /// Username of the prospective assignee IObservable CheckAssignee(int repositoryId, string assignee); } diff --git a/Octokit.Reactive/Clients/IObservableAuthorizationsClient.cs b/Octokit.Reactive/Clients/IObservableAuthorizationsClient.cs index 1b7505ca..a24e9394 100644 --- a/Octokit.Reactive/Clients/IObservableAuthorizationsClient.cs +++ b/Octokit.Reactive/Clients/IObservableAuthorizationsClient.cs @@ -89,7 +89,7 @@ namespace Octokit.Reactive /// This method requires authentication. /// See the API documentation for more information. /// - /// Client ID of the OAuth application for the token + /// Client Id of the OAuth application for the token /// The client secret /// Describes the new authorization to create /// @@ -113,7 +113,7 @@ namespace Octokit.Reactive /// This method requires authentication. /// See the API documentation for more information. /// - /// Client ID of the OAuth application for the token + /// Client Id of the OAuth application for the token /// The client secret /// The two-factor authentication code in response to the current user's previous challenge /// Describes the new authorization to create @@ -140,7 +140,7 @@ namespace Octokit.Reactive /// See API /// documentation for more details. /// - /// Client ID for the OAuth application that is requesting the token + /// Client Id for the OAuth application that is requesting the token /// The client secret /// Defines the scopes and metadata for the token /// Thrown when the user does not have permission to make @@ -162,7 +162,7 @@ namespace Octokit.Reactive /// See API /// documentation for more details. /// - /// Client ID for the OAuth application that is requesting the token + /// Client Id for the OAuth application that is requesting the token /// The client secret /// Defines the scopes and metadata for the token /// The two-factor authentication code provided by the user @@ -184,7 +184,7 @@ namespace Octokit.Reactive /// This method requires authentication. /// See the API documentation for more information. /// - /// Client ID of the OAuth application for the token + /// Client Id of the OAuth application for the token /// The OAuth token to check /// The valid . IObservable CheckApplicationAuthentication(string clientId, string accessToken); @@ -241,7 +241,7 @@ namespace Octokit.Reactive /// See the API /// documentation for more details. /// - /// The system-wide ID of the authorization to delete + /// The system-wide Id of the authorization to delete /// /// Thrown when the current user does not have permission to make the request. /// @@ -256,7 +256,7 @@ namespace Octokit.Reactive /// See the API /// documentation for more details. /// - /// The system-wide ID of the authorization to delete + /// The system-wide Id of the authorization to delete /// Two factor authorization code /// /// Thrown when the current user does not have permission to make the request. diff --git a/Octokit.Reactive/Clients/IObservableBlobsClient.cs b/Octokit.Reactive/Clients/IObservableBlobsClient.cs index 281026dc..d6a230df 100644 --- a/Octokit.Reactive/Clients/IObservableBlobsClient.cs +++ b/Octokit.Reactive/Clients/IObservableBlobsClient.cs @@ -28,7 +28,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/git/blobs/#get-a-blob /// - /// The ID of the repository + /// The Id of the repository /// The SHA of the blob [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")] IObservable Get(int repositoryId, string reference); @@ -50,7 +50,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/git/blobs/#create-a-blob /// - /// The ID of the repository + /// The Id of the repository /// The new Blob IObservable Create(int repositoryId, NewBlob newBlob); } diff --git a/Octokit.Reactive/Clients/IObservableCommitCommentReactionsClient.cs b/Octokit.Reactive/Clients/IObservableCommitCommentReactionsClient.cs index 5d837b70..4b822dc6 100644 --- a/Octokit.Reactive/Clients/IObservableCommitCommentReactionsClient.cs +++ b/Octokit.Reactive/Clients/IObservableCommitCommentReactionsClient.cs @@ -25,7 +25,7 @@ namespace Octokit.Reactive /// Creates a reaction for a specified Commit Comment /// /// https://developer.github.com/v3/reactions/#create-reaction-for-a-commit-comment - /// The ID of the repository + /// The Id of the repository /// The comment id /// The reaction to create /// diff --git a/Octokit.Reactive/Clients/IObservableCommitStatusClient.cs b/Octokit.Reactive/Clients/IObservableCommitStatusClient.cs index 50677079..15e99cd7 100644 --- a/Octokit.Reactive/Clients/IObservableCommitStatusClient.cs +++ b/Octokit.Reactive/Clients/IObservableCommitStatusClient.cs @@ -25,7 +25,7 @@ namespace Octokit.Reactive /// a tag name. /// /// Only users with pull access can see this. - /// The ID of the repository + /// The Id of the repository /// The reference (SHA, branch name, or tag name) to list commits for IObservable GetAll(int repositoryId, string reference); @@ -45,7 +45,7 @@ namespace Octokit.Reactive /// a tag name. /// /// Only users with pull access can see this. - /// The ID of the repository + /// The Id of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// Options for changing the API response IObservable GetAll(int repositoryId, string reference, ApiOptions options); @@ -65,7 +65,7 @@ namespace Octokit.Reactive /// a tag name. /// /// Only users with pull access can see this. - /// The ID of the repository + /// The Id of the repository /// The reference (SHA, branch name, or tag name) to list commits for IObservable GetCombined(int repositoryId, string reference); @@ -81,7 +81,7 @@ namespace Octokit.Reactive /// /// Creates a commit status for the specified ref. /// - /// The ID of the repository + /// The Id of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// The commit status to create IObservable Create(int repositoryId, string reference, NewCommitStatus newCommitStatus); diff --git a/Octokit.Reactive/Clients/IObservableCommitsClient.cs b/Octokit.Reactive/Clients/IObservableCommitsClient.cs index 09d06199..5a92ef78 100644 --- a/Octokit.Reactive/Clients/IObservableCommitsClient.cs +++ b/Octokit.Reactive/Clients/IObservableCommitsClient.cs @@ -30,7 +30,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/git/commits/#get-a-commit /// - /// The ID of the repository + /// The Id of the repository /// Tha sha reference of the commit [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] @@ -53,7 +53,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/git/commits/#create-a-commit /// - /// The ID of the repository + /// The Id of the repository /// The commit to create IObservable Create(int repositoryId, NewCommit commit); } diff --git a/Octokit.Reactive/Clients/IObservableDeploymentStatusClient.cs b/Octokit.Reactive/Clients/IObservableDeploymentStatusClient.cs index 2e799858..c02110c6 100644 --- a/Octokit.Reactive/Clients/IObservableDeploymentStatusClient.cs +++ b/Octokit.Reactive/Clients/IObservableDeploymentStatusClient.cs @@ -30,7 +30,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses /// - /// The ID of the repository. + /// The Id of the repository. /// The id of the deployment. IObservable GetAll(int repositoryId, int deploymentId); @@ -54,7 +54,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses /// - /// The ID of the repository. + /// The Id of the repository. /// The id of the deployment. /// Options for changing the API response IObservable GetAll(int repositoryId, int deploymentId, ApiOptions options); @@ -79,7 +79,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/repos/deployments/#create-a-deployment-status /// - /// The ID of the repository. + /// The Id of the repository. /// The id of the deployment. /// The new deployment status to create. IObservable Create(int repositoryId, int deploymentId, NewDeploymentStatus newDeploymentStatus); diff --git a/Octokit.Reactive/Clients/IObservableDeploymentsClient.cs b/Octokit.Reactive/Clients/IObservableDeploymentsClient.cs index 9cc6727a..60a2214f 100644 --- a/Octokit.Reactive/Clients/IObservableDeploymentsClient.cs +++ b/Octokit.Reactive/Clients/IObservableDeploymentsClient.cs @@ -29,7 +29,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/repos/deployments/#list-deployments /// - /// The ID of the repository + /// The Id of the repository IObservable GetAll(int repositoryId); /// @@ -51,7 +51,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/repos/deployments/#list-deployments /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response IObservable GetAll(int repositoryId, ApiOptions options); @@ -74,7 +74,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/repos/deployments/#create-a-deployment /// - /// The ID of the repository + /// The Id of the repository /// A instance describing the new deployment to create IObservable Create(int repositoryId, NewDeployment newDeployment); diff --git a/Octokit.Reactive/Clients/IObservableEventsClient.cs b/Octokit.Reactive/Clients/IObservableEventsClient.cs index 1a30e855..c8fb6887 100644 --- a/Octokit.Reactive/Clients/IObservableEventsClient.cs +++ b/Octokit.Reactive/Clients/IObservableEventsClient.cs @@ -44,7 +44,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository /// - /// The ID of the repository + /// The Id of the repository IObservable GetAllForRepository(int repositoryId); /// @@ -64,7 +64,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response IObservable GetAllForRepository(int repositoryId, ApiOptions options); @@ -84,7 +84,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository /// - /// The ID of the repository + /// The Id of the repository IObservable GetAllIssuesForRepository(int repositoryId); /// @@ -104,7 +104,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response IObservable GetAllIssuesForRepository(int repositoryId, ApiOptions options); diff --git a/Octokit.Reactive/Clients/IObservableIssueCommentReactionsClient.cs b/Octokit.Reactive/Clients/IObservableIssueCommentReactionsClient.cs index 3bc3097a..f2062a1a 100644 --- a/Octokit.Reactive/Clients/IObservableIssueCommentReactionsClient.cs +++ b/Octokit.Reactive/Clients/IObservableIssueCommentReactionsClient.cs @@ -24,7 +24,7 @@ namespace Octokit.Reactive /// Creates a reaction for a specified Issue Comment /// /// https://developer.github.com/v3/reactions/#create-reaction-for-an-issue-comment - /// The ID of the repository + /// The Id of the repository /// The comment id /// The reaction to create IObservable Create(int repositoryId, int number, NewReaction reaction); @@ -42,7 +42,7 @@ namespace Octokit.Reactive /// List reactions for a specified Issue Comment /// /// https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment - /// The ID of the repository + /// The Id of the repository /// The comment id IObservable GetAll(int repositoryId, int number); } diff --git a/Octokit.Reactive/Clients/IObservableIssueCommentsClient.cs b/Octokit.Reactive/Clients/IObservableIssueCommentsClient.cs index 4d387dae..0ced4033 100644 --- a/Octokit.Reactive/Clients/IObservableIssueCommentsClient.cs +++ b/Octokit.Reactive/Clients/IObservableIssueCommentsClient.cs @@ -27,7 +27,7 @@ namespace Octokit.Reactive /// Gets a single Issue Comment by id. /// /// http://developer.github.com/v3/issues/comments/#get-a-single-comment - /// The ID of the repository + /// The Id of the repository /// The issue comment id [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] @@ -45,7 +45,7 @@ namespace Octokit.Reactive /// Gets Issue Comments for a repository. /// /// http://developer.github.com/v3/issues/comments/#list-comments-in-a-repository - /// The ID of the repository + /// The Id of the repository IObservable GetAllForRepository(int repositoryId); /// @@ -61,7 +61,7 @@ namespace Octokit.Reactive /// Gets Issue Comments for a repository. /// /// http://developer.github.com/v3/issues/comments/#list-comments-in-a-repository - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response IObservable GetAllForRepository(int repositoryId, ApiOptions options); @@ -78,7 +78,7 @@ namespace Octokit.Reactive /// Gets Issue Comments for a specified Issue. /// /// http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue - /// The ID of the repository + /// The Id of the repository /// The issue number IObservable GetAllForIssue(int repositoryId, int number); @@ -96,7 +96,7 @@ namespace Octokit.Reactive /// Gets Issue Comments for a specified Issue. /// /// http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue - /// The ID of the repository + /// The Id of the repository /// The issue number /// Options for changing the API response IObservable GetAllForIssue(int repositoryId, int number, ApiOptions options); @@ -115,7 +115,7 @@ namespace Octokit.Reactive /// Creates a new Issue Comment for a specified Issue. /// /// http://developer.github.com/v3/issues/comments/#create-a-comment - /// The ID of the repository + /// The Id of the repository /// The number of the issue /// The text of the new comment IObservable Create(int repositoryId, int number, string newComment); @@ -134,7 +134,7 @@ namespace Octokit.Reactive /// Updates a specified Issue Comment. /// /// http://developer.github.com/v3/issues/comments/#edit-a-comment - /// The ID of the repository + /// The Id of the repository /// The comment id /// The modified comment IObservable Update(int repositoryId, int id, string commentUpdate); @@ -152,7 +152,7 @@ namespace Octokit.Reactive /// Deletes the specified Issue Comment /// /// http://developer.github.com/v3/issues/comments/#delete-a-comment - /// The ID of the repository + /// The Id of the repository /// The comment id IObservable Delete(int repositoryId, int id); } diff --git a/Octokit.Reactive/Clients/IObservableIssueReactionsClient.cs b/Octokit.Reactive/Clients/IObservableIssueReactionsClient.cs index 91f0bb6e..70bae1d0 100644 --- a/Octokit.Reactive/Clients/IObservableIssueReactionsClient.cs +++ b/Octokit.Reactive/Clients/IObservableIssueReactionsClient.cs @@ -23,7 +23,7 @@ namespace Octokit.Reactive /// List reactions for a specified Issue. /// /// https://developer.github.com/v3/reactions/#list-reactions-for-an-issue - /// The ID of the repository + /// The Id of the repository /// The issue id IObservable GetAll(int repositoryId, int number); @@ -41,7 +41,7 @@ namespace Octokit.Reactive /// Creates a reaction for a specified Issue. /// /// https://developer.github.com/v3/reactions/#create-reaction-for-an-issue - /// The ID of the repository + /// The Id of the repository /// The issue id /// The reaction to create IObservable Create(int repositoryId, int number, NewReaction reaction); diff --git a/Octokit.Reactive/Clients/IObservableIssuesClient.cs b/Octokit.Reactive/Clients/IObservableIssuesClient.cs index 5c545a67..9637d9b6 100644 --- a/Octokit.Reactive/Clients/IObservableIssuesClient.cs +++ b/Octokit.Reactive/Clients/IObservableIssuesClient.cs @@ -58,7 +58,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/#get-a-single-issue /// - /// The ID of the repository + /// The Id of the repository /// The issue number [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] @@ -202,7 +202,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/#list-issues-for-a-repository /// - /// The ID of the repository + /// The Id of the repository IObservable GetAllForRepository(int repositoryId); /// @@ -222,7 +222,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/#list-issues-for-a-repository /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response IObservable GetAllForRepository(int repositoryId, ApiOptions options); @@ -243,7 +243,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/#list-issues-for-a-repository /// - /// The ID of the repository + /// The Id of the repository /// Used to filter and sort the list of issues returned IObservable GetAllForRepository(int repositoryId, RepositoryIssueRequest request); @@ -265,7 +265,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/#list-issues-for-a-repository /// - /// The ID of the repository + /// The Id of the repository /// Used to filter and sort the list of issues returned /// Options for changing the API response IObservable GetAllForRepository(int repositoryId, RepositoryIssueRequest request, ApiOptions options); @@ -285,7 +285,7 @@ namespace Octokit.Reactive /// issue. /// /// http://developer.github.com/v3/issues/#create-an-issue - /// The ID of the repository + /// The Id of the repository /// A instance describing the new issue to create IObservable Create(int repositoryId, NewIssue newIssue); @@ -306,7 +306,7 @@ namespace Octokit.Reactive /// issue. /// /// http://developer.github.com/v3/issues/#create-an-issue - /// The ID of the repository + /// The Id of the repository /// The issue number /// An instance describing the changes to make to the issue /// @@ -325,7 +325,7 @@ namespace Octokit.Reactive /// Locks an issue for the specified repository. Issue owners and users with push access can lock an issue. /// /// https://developer.github.com/v3/issues/#lock-an-issue - /// The ID of the repository + /// The Id of the repository /// The issue number IObservable Lock(int repositoryId, int number); @@ -342,7 +342,7 @@ namespace Octokit.Reactive /// Unlocks an issue for the specified repository. Issue owners and users with push access can unlock an issue. /// /// https://developer.github.com/v3/issues/#unlock-an-issue - /// The ID of the repository + /// The Id of the repository /// The issue number IObservable Unlock(int repositoryId, int number); } diff --git a/Octokit.Reactive/Clients/IObservableIssuesEventsClient.cs b/Octokit.Reactive/Clients/IObservableIssuesEventsClient.cs index c899f840..ac5860e8 100644 --- a/Octokit.Reactive/Clients/IObservableIssuesEventsClient.cs +++ b/Octokit.Reactive/Clients/IObservableIssuesEventsClient.cs @@ -28,7 +28,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/events/#list-events-for-an-issue /// - /// The ID of the repository + /// The Id of the repository /// The issue number IObservable GetAllForIssue(int repositoryId, int number); @@ -50,7 +50,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/events/#list-events-for-an-issue /// - /// The ID of the repository + /// The Id of the repository /// The issue number /// Options for changing the API response IObservable GetAllForIssue(int repositoryId, int number, ApiOptions options); @@ -71,7 +71,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/events/#list-events-for-a-repository /// - /// The ID of the repository + /// The Id of the repository IObservable GetAllForRepository(int repositoryId); /// @@ -91,7 +91,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/events/#list-events-for-a-repository /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response IObservable GetAllForRepository(int repositoryId, ApiOptions options); @@ -114,7 +114,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/events/#get-a-single-event /// - /// The ID of the repository + /// The Id of the repository /// The event id [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] diff --git a/Octokit.Reactive/Clients/IObservableIssuesLabelsClient.cs b/Octokit.Reactive/Clients/IObservableIssuesLabelsClient.cs index 5d304c5f..d79fe700 100644 --- a/Octokit.Reactive/Clients/IObservableIssuesLabelsClient.cs +++ b/Octokit.Reactive/Clients/IObservableIssuesLabelsClient.cs @@ -29,7 +29,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// The ID of the repository + /// The Id of the repository /// The number of the issue IObservable /// http://developer.github.com/v3/issues/milestones/#update-a-milestone - /// The ID of the repository + /// The Id of the repository /// The Milestone number /// An instance describing the changes to make to the Milestone /// @@ -188,7 +188,7 @@ namespace Octokit.Reactive /// Milestone. /// /// http://developer.github.com/v3/issues/milestones/#delete-a-milestone - /// The ID of the repository + /// The Id of the repository /// The milestone number /// IObservable Delete(int repositoryId, int number); diff --git a/Octokit.Reactive/Clients/IObservableNotificationsClient.cs b/Octokit.Reactive/Clients/IObservableNotificationsClient.cs index 3f917894..097e197c 100644 --- a/Octokit.Reactive/Clients/IObservableNotificationsClient.cs +++ b/Octokit.Reactive/Clients/IObservableNotificationsClient.cs @@ -38,7 +38,7 @@ namespace Octokit.Reactive /// /// Retrieves all of the s for the current user specific to the specified repository. /// - /// The ID of the repository. + /// The Id of the repository. /// Thrown if the client is not authenticated. IObservable GetAllForRepository(int repositoryId); @@ -54,7 +54,7 @@ namespace Octokit.Reactive /// /// Retrieves all of the s for the current user specific to the specified repository. /// - /// The ID of the repository. + /// The Id of the repository. /// Options for changing the API response /// Thrown if the client is not authenticated. IObservable GetAllForRepository(int repositoryId, ApiOptions options); @@ -88,7 +88,7 @@ namespace Octokit.Reactive /// /// Retrieves all of the s for the current user specific to the specified repository. /// - /// The ID of the repository. + /// The Id of the repository. /// Specifies the parameters to filter notifications by /// Thrown if the client is not authenticated. IObservable GetAllForRepository(int repositoryId, NotificationsRequest request); @@ -106,7 +106,7 @@ namespace Octokit.Reactive /// /// Retrieves all of the s for the current user specific to the specified repository. /// - /// The ID of the repository. + /// The Id of the repository. /// Specifies the parameters to filter notifications by /// Options for changing the API response /// Thrown if the client is not authenticated. @@ -136,7 +136,7 @@ namespace Octokit.Reactive /// /// Marks the notifications for a given repository as read. /// - /// The ID of the repository + /// The Id of the repository /// http://developer.github.com/v3/activity/notifications/#mark-notifications-as-read-in-a-repository IObservable MarkAsReadForRepository(int repositoryId); @@ -152,7 +152,7 @@ namespace Octokit.Reactive /// /// Marks the notifications for a given repository as read. /// - /// The ID of the repository + /// The Id of the repository /// The parameter which specifies which notifications to mark. /// http://developer.github.com/v3/activity/notifications/#mark-notifications-as-read-in-a-repository IObservable MarkAsReadForRepository(int repositoryId, MarkAsReadRequest markAsReadRequest); diff --git a/Octokit.Reactive/Clients/IObservablePullRequestReviewCommentReactionsClient.cs b/Octokit.Reactive/Clients/IObservablePullRequestReviewCommentReactionsClient.cs index 8fee248e..719e983b 100644 --- a/Octokit.Reactive/Clients/IObservablePullRequestReviewCommentReactionsClient.cs +++ b/Octokit.Reactive/Clients/IObservablePullRequestReviewCommentReactionsClient.cs @@ -23,7 +23,7 @@ namespace Octokit.Reactive /// Get all reactions for a specified Pull Request Review Comment. /// /// https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment - /// The ID of the repository + /// The Id of the repository /// The comment id IObservable GetAll(int repositoryId, int number); diff --git a/Octokit.Reactive/Clients/IObservablePullRequestReviewCommentsClient.cs b/Octokit.Reactive/Clients/IObservablePullRequestReviewCommentsClient.cs index b161f169..4764d59d 100644 --- a/Octokit.Reactive/Clients/IObservablePullRequestReviewCommentsClient.cs +++ b/Octokit.Reactive/Clients/IObservablePullRequestReviewCommentsClient.cs @@ -24,7 +24,7 @@ namespace Octokit.Reactive /// Gets review comments for a specified pull request. /// /// http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request - /// The ID of the repository + /// The Id of the repository /// The pull request number IObservable GetAll(int repositoryId, int number); @@ -42,7 +42,7 @@ namespace Octokit.Reactive /// Gets review comments for a specified pull request. /// /// http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request - /// The ID of the repository + /// The Id of the repository /// The pull request number /// Options for changing the API response IObservable GetAll(int repositoryId, int number, ApiOptions options); @@ -59,7 +59,7 @@ namespace Octokit.Reactive /// Gets a list of the pull request review comments in a specified repository. /// /// http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository - /// The ID of the repository + /// The Id of the repository IObservable GetAllForRepository(int repositoryId); /// @@ -75,7 +75,7 @@ namespace Octokit.Reactive /// Gets a list of the pull request review comments in a specified repository. /// /// http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response IObservable GetAllForRepository(int repositoryId, ApiOptions options); @@ -92,7 +92,7 @@ namespace Octokit.Reactive /// Gets a list of the pull request review comments in a specified repository. /// /// http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository - /// The ID of the repository + /// The Id of the repository /// The sorting parameters IObservable GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request); @@ -110,7 +110,7 @@ namespace Octokit.Reactive /// Gets a list of the pull request review comments in a specified repository. /// /// http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository - /// The ID of the repository + /// The Id of the repository /// The sorting parameters /// Options for changing the API response IObservable GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request, ApiOptions options); @@ -128,7 +128,7 @@ namespace Octokit.Reactive /// Gets a single pull request review comment by number. /// /// http://developer.github.com/v3/pulls/comments/#get-a-single-comment - /// The ID of the repository + /// The Id of the repository /// The pull request review comment number IObservable GetComment(int repositoryId, int number); @@ -146,7 +146,7 @@ namespace Octokit.Reactive /// Creates a comment on a pull request review. /// /// http://developer.github.com/v3/pulls/comments/#create-a-comment - /// The ID of the repository + /// The Id of the repository /// The Pull Request number /// The comment IObservable Create(int repositoryId, int number, PullRequestReviewCommentCreate comment); @@ -165,7 +165,7 @@ namespace Octokit.Reactive /// Creates a comment on a pull request review as a reply to another comment. /// /// http://developer.github.com/v3/pulls/comments/#create-a-comment - /// The ID of the repository + /// The Id of the repository /// The pull request number /// The comment IObservable CreateReply(int repositoryId, int number, PullRequestReviewCommentReplyCreate comment); @@ -184,7 +184,7 @@ namespace Octokit.Reactive /// Edits a comment on a pull request review. /// /// http://developer.github.com/v3/pulls/comments/#edit-a-comment - /// The ID of the repository + /// The Id of the repository /// The pull request review comment number /// The edited comment IObservable Edit(int repositoryId, int number, PullRequestReviewCommentEdit comment); @@ -202,7 +202,7 @@ namespace Octokit.Reactive /// Deletes a comment on a pull request review. /// /// http://developer.github.com/v3/pulls/comments/#delete-a-comment - /// The ID of the repository + /// The Id of the repository /// The pull request review comment number IObservable Delete(int repositoryId, int number); } diff --git a/Octokit.Reactive/Clients/IObservablePullRequestsClient.cs b/Octokit.Reactive/Clients/IObservablePullRequestsClient.cs index d70ffc69..393878a5 100644 --- a/Octokit.Reactive/Clients/IObservablePullRequestsClient.cs +++ b/Octokit.Reactive/Clients/IObservablePullRequestsClient.cs @@ -35,7 +35,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/pulls/#get-a-single-pull-request /// - /// The ID of the repository + /// The Id of the repository /// The number of the pull request [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] @@ -57,7 +57,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/pulls/#list-pull-requests /// - /// The ID of the repository + /// The Id of the repository IObservable GetAllForRepository(int repositoryId); /// @@ -77,7 +77,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/pulls/#list-pull-requests /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response IObservable GetAllForRepository(int repositoryId, ApiOptions options); @@ -98,7 +98,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/pulls/#list-pull-requests /// - /// The ID of the repository + /// The Id of the repository /// Used to filter and sort the list of pull requests returned IObservable GetAllForRepository(int repositoryId, PullRequestRequest request); @@ -120,7 +120,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/pulls/#list-pull-requests /// - /// The ID of the repository + /// The Id of the repository /// Used to filter and sort the list of pull requests returned /// Options for changing the API response IObservable GetAllForRepository(int repositoryId, PullRequestRequest request, ApiOptions options); @@ -138,7 +138,7 @@ namespace Octokit.Reactive /// Creates a pull request for the specified repository. /// /// http://developer.github.com/v3/pulls/#create-a-pull-request - /// The ID of the repository + /// The Id of the repository /// A instance describing the new PullRequest to create IObservable Create(int repositoryId, NewPullRequest newPullRequest); @@ -157,7 +157,7 @@ namespace Octokit.Reactive /// Update a pull request for the specified repository. /// /// http://developer.github.com/v3/pulls/#update-a-pull-request - /// The ID of the repository + /// The Id of the repository /// The PullRequest number /// An instance describing the changes to make to the PullRequest /// @@ -177,7 +177,7 @@ namespace Octokit.Reactive /// Merge a pull request. /// /// http://developer.github.com/v3/pulls/#merge-a-pull-request-merge-buttontrade - /// The ID of the repository + /// The Id of the repository /// The pull request number /// A instance describing a pull request merge IObservable Merge(int repositoryId, int number, MergePullRequest mergePullRequest); @@ -195,7 +195,7 @@ namespace Octokit.Reactive /// Gets the pull request merge status. /// /// http://developer.github.com/v3/pulls/#get-if-a-pull-request-has-been-merged - /// The ID of the repository + /// The Id of the repository /// The pull request number IObservable Merged(int repositoryId, int number); @@ -212,7 +212,7 @@ namespace Octokit.Reactive /// Gets the list of commits on a pull request. /// /// http://developer.github.com/v3/pulls/#list-commits-on-a-pull-request - /// The ID of the repository + /// The Id of the repository /// The pull request number IObservable Commits(int repositoryId, int number); @@ -229,7 +229,7 @@ namespace Octokit.Reactive /// Get the list of files on a pull request. /// /// https://developer.github.com/v3/pulls/#list-pull-requests-files - /// The ID of the repository + /// The Id of the repository /// The pull request number IObservable Files(int repositoryId, int number); } diff --git a/Octokit.Reactive/Clients/IObservableReferencesClient.cs b/Octokit.Reactive/Clients/IObservableReferencesClient.cs index 23ac3a6c..6d11dbe1 100644 --- a/Octokit.Reactive/Clients/IObservableReferencesClient.cs +++ b/Octokit.Reactive/Clients/IObservableReferencesClient.cs @@ -32,7 +32,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/git/refs/#get-a-reference /// - /// The ID of the repository + /// The Id of the repository /// The name of the reference /// [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", @@ -56,7 +56,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/git/refs/#get-all-references /// - /// The ID of the repository + /// The Id of the repository /// IObservable GetAll(int repositoryId); @@ -78,7 +78,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/git/refs/#get-all-references /// - /// The ID of the repository + /// The Id of the repository /// The sub-namespace to get references for /// IObservable GetAllForSubNamespace(int repositoryId, string subNamespace); @@ -101,7 +101,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/git/refs/#create-a-reference /// - /// The ID of the repository + /// The Id of the repository /// The reference to create /// IObservable Create(int repositoryId, NewReference reference); @@ -125,7 +125,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/git/refs/#update-a-reference /// - /// The ID of the repository + /// The Id of the repository /// The name of the reference /// The updated reference data /// @@ -149,7 +149,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/git/refs/#delete-a-reference /// - /// The ID of the repository + /// The Id of the repository /// The name of the reference /// IObservable Delete(int repositoryId, string reference); diff --git a/Octokit.Reactive/Clients/IObservableReleasesClient.cs b/Octokit.Reactive/Clients/IObservableReleasesClient.cs index 48fdc714..2b0623c1 100644 --- a/Octokit.Reactive/Clients/IObservableReleasesClient.cs +++ b/Octokit.Reactive/Clients/IObservableReleasesClient.cs @@ -29,7 +29,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// The repository's ID + /// The Id of the repository /// Thrown when a general API error occurs. IObservable GetAll(int repositoryId); @@ -51,7 +51,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// The repository's ID + /// The Id of the repository /// Options for changing the API response /// Thrown when a general API error occurs. IObservable GetAll(int repositoryId, ApiOptions options); @@ -75,7 +75,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// The repository's ID + /// The Id of the repository /// The id of the release /// Thrown when a general API error occurs. [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] @@ -98,7 +98,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// The repository's ID + /// The Id of the repository /// Thrown when a general API error occurs. IObservable GetLatest(int repositoryId); @@ -120,7 +120,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// The repository's ID + /// The Id of the repository /// A description of the release to create /// Thrown when a general API error occurs. IObservable Create(int repositoryId, NewRelease data); @@ -144,7 +144,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// The repository's ID + /// The Id of the repository /// The id of the release /// A description of the release to edit /// Thrown when a general API error occurs. @@ -168,7 +168,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// The repository's ID + /// The Id of the repository /// The id of the release to delete /// Thrown when a general API error occurs. IObservable Delete(int repositoryId, int id); @@ -191,7 +191,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// The repository's ID + /// The Id of the repository /// The id of the . /// Thrown when a general API error occurs. IObservable GetAllAssets(int repositoryId, int id); @@ -215,7 +215,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// The repository's ID + /// The Id of the repository /// The id of the . /// Options for changing the API response /// Thrown when a general API error occurs. @@ -249,7 +249,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// The repository's ID + /// The Id of the repository /// The id of the IObservable GetAsset(int repositoryId, int assetId); @@ -271,7 +271,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// The repository's ID + /// The Id of the repository /// The id of the /// Description of the asset with its amended data IObservable EditAsset(int repositoryId, int assetId, ReleaseAssetUpdate data); @@ -293,7 +293,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// The repository's ID + /// The Id of the repository /// The id of the . IObservable DeleteAsset(int repositoryId, int id); } diff --git a/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs b/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs index 952dd82a..fc4b2005 100644 --- a/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs +++ b/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs @@ -33,7 +33,7 @@ namespace Octokit.Reactive /// /// Deletes a repository for the specified owner and name. /// - /// The ID of the repository + /// The Id of the repository /// Deleting a repository requires admin access. If OAuth is used, the `delete_repo` scope is required. /// An for the operation IObservable Delete(int repositoryId); @@ -50,7 +50,7 @@ namespace Octokit.Reactive /// /// Retrieves the for the specified owner and name. /// - /// The ID of the repository + /// The Id of the repository /// A [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")] IObservable Get(int repositoryId); @@ -250,7 +250,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more details /// - /// The ID of the repository + /// The Id of the repository /// Thrown when a general API error occurs. /// All es of the repository IObservable GetAllBranches(int repositoryId); @@ -274,7 +274,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more details /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response /// Thrown when a general API error occurs. /// All es of the repository @@ -297,7 +297,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more details /// - /// The ID of the repository + /// The Id of the repository /// All contributors of the repository. IObservable GetAllContributors(int repositoryId); @@ -319,7 +319,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more details /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response /// All contributors of the repository. IObservable GetAllContributors(int repositoryId, ApiOptions options); @@ -342,7 +342,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more details /// - /// The ID of the repository + /// The Id of the repository /// True if anonymous contributors should be included in result; Otherwise false /// All contributors of the repository. IObservable GetAllContributors(int repositoryId, bool includeAnonymous); @@ -366,7 +366,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more details /// - /// The ID of the repository + /// The Id of the repository /// True if anonymous contributors should be included in result; Otherwise false /// Options for changing the API response /// All contributors of the repository. @@ -389,7 +389,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more details /// - /// The ID of the repository + /// The Id of the repository /// All languages used in the repository and the number of bytes of each language. IObservable GetAllLanguages(int repositoryId); @@ -410,7 +410,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more details /// - /// The ID of the repository + /// The Id of the repository /// All s associated with the repository IObservable GetAllTeams(int repositoryId); @@ -432,7 +432,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more details /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response /// All s associated with the repository IObservable GetAllTeams(int repositoryId, ApiOptions options); @@ -454,7 +454,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more details /// - /// The ID of the repository + /// The Id of the repository /// All of the repositories tags. IObservable GetAllTags(int repositoryId); @@ -476,7 +476,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more details /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response /// All of the repositories tags. IObservable GetAllTags(int repositoryId, ApiOptions options); @@ -499,7 +499,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more details /// - /// The ID of the repository + /// The Id of the repository /// The name of the branch /// The specified IObservable GetBranch(int repositoryId, string branchName); @@ -516,7 +516,7 @@ namespace Octokit.Reactive /// /// Updates the specified repository with the values given in /// - /// The ID of the repository + /// The Id of the repository /// New values to update the repository with /// The updated IObservable Edit(int repositoryId, RepositoryUpdate update); @@ -534,7 +534,7 @@ namespace Octokit.Reactive /// /// Edit the specified branch with the values given in /// - /// The ID of the repository + /// The Id of the repository /// The name of the branch /// New values to update the branch with /// The updated diff --git a/Octokit.Reactive/Clients/IObservableRepositoryCommentsClient.cs b/Octokit.Reactive/Clients/IObservableRepositoryCommentsClient.cs index 804e5d7a..c953df78 100644 --- a/Octokit.Reactive/Clients/IObservableRepositoryCommentsClient.cs +++ b/Octokit.Reactive/Clients/IObservableRepositoryCommentsClient.cs @@ -27,7 +27,7 @@ namespace Octokit.Reactive /// Gets a single Repository Comment by number. /// /// http://developer.github.com/v3/repos/comments/#get-a-single-commit-comment - /// The ID of the repository + /// The Id of the repository /// The comment id [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] @@ -45,7 +45,7 @@ namespace Octokit.Reactive /// Gets Commit Comments for a repository. /// /// http://developer.github.com/v3/repos/comments/#list-commit-comments-for-a-repository - /// The ID of the repository + /// The Id of the repository IObservable GetAllForRepository(int repositoryId); /// @@ -61,7 +61,7 @@ namespace Octokit.Reactive /// Gets Commit Comments for a repository. /// /// http://developer.github.com/v3/repos/comments/#list-commit-comments-for-a-repository - /// The ID of the repository + /// The Id of the repository /// Options to change the API response IObservable GetAllForRepository(int repositoryId, ApiOptions options); @@ -78,7 +78,7 @@ namespace Octokit.Reactive /// Gets Commit Comments for a specified Commit. /// /// http://developer.github.com/v3/repos/comments/#list-comments-for-a-single-commit - /// The ID of the repository + /// The Id of the repository /// The sha of the commit IObservable GetAllForCommit(int repositoryId, string sha); @@ -96,7 +96,7 @@ namespace Octokit.Reactive /// Gets Commit Comments for a specified Commit. /// /// http://developer.github.com/v3/repos/comments/#list-comments-for-a-single-commit - /// The ID of the repository + /// The Id of the repository /// The sha of the commit /// Options to change the API response IObservable GetAllForCommit(int repositoryId, string sha, ApiOptions options); @@ -115,7 +115,7 @@ namespace Octokit.Reactive /// Creates a new Commit Comment for a specified Commit. /// /// http://developer.github.com/v3/repos/comments/#create-a-commit-comment - /// The ID of the repository + /// The Id of the repository /// The sha reference of commit /// The new comment to add to the commit IObservable Create(int repositoryId, string sha, NewCommitComment newCommitComment); @@ -134,7 +134,7 @@ namespace Octokit.Reactive /// Updates a specified Commit Comment. /// /// http://developer.github.com/v3/repos/comments/#update-a-commit-comment - /// The ID of the repository + /// The Id of the repository /// The comment number /// The modified comment IObservable Update(int repositoryId, int number, string commentUpdate); @@ -152,7 +152,7 @@ namespace Octokit.Reactive /// Deletes the specified Commit Comment /// /// http://developer.github.com/v3/repos/comments/#delete-a-commit-comment - /// The ID of the repository + /// The Id of the repository /// The comment id IObservable Delete(int repositoryId, int number); } diff --git a/Octokit.Reactive/Clients/IObservableRepositoryCommitsClients.cs b/Octokit.Reactive/Clients/IObservableRepositoryCommitsClients.cs index 74a2b221..304038a4 100644 --- a/Octokit.Reactive/Clients/IObservableRepositoryCommitsClients.cs +++ b/Octokit.Reactive/Clients/IObservableRepositoryCommitsClients.cs @@ -24,7 +24,7 @@ namespace Octokit.Reactive /// /// Compare two references in a repository /// - /// The ID of the repository + /// The Id of the repository /// The reference to use as the base commit /// The reference to use as the head commit [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "base")] @@ -43,7 +43,7 @@ namespace Octokit.Reactive /// /// Gets all commits for a given repository /// - /// The ID of the repository + /// The Id of the repository /// The reference for the commit [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] @@ -59,7 +59,7 @@ namespace Octokit.Reactive /// /// Gets all commits for a given repository /// - /// The ID of the repository + /// The Id of the repository IObservable GetAll(int repositoryId); /// @@ -73,7 +73,7 @@ namespace Octokit.Reactive /// /// Gets all commits for a given repository /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response IObservable GetAll(int repositoryId, ApiOptions options); @@ -88,7 +88,7 @@ namespace Octokit.Reactive /// /// Gets all commits for a given repository /// - /// The ID of the repository + /// The Id of the repository /// Used to filter list of commits returned IObservable GetAll(int repositoryId, CommitRequest request); @@ -104,7 +104,7 @@ namespace Octokit.Reactive /// /// Gets all commits for a given repository /// - /// The ID of the repository + /// The Id of the repository /// Used to filter list of commits returned /// Options for changing the API response IObservable GetAll(int repositoryId, CommitRequest request, ApiOptions options); @@ -120,7 +120,7 @@ namespace Octokit.Reactive /// /// Get the SHA-1 of a commit reference /// - /// The ID of the repository + /// The Id of the repository /// The repository reference IObservable GetSha1(int repositoryId, string reference); } diff --git a/Octokit.Reactive/Clients/IObservableRepositoryContentsClient.cs b/Octokit.Reactive/Clients/IObservableRepositoryContentsClient.cs index 110c0bd6..f6ce79dd 100644 --- a/Octokit.Reactive/Clients/IObservableRepositoryContentsClient.cs +++ b/Octokit.Reactive/Clients/IObservableRepositoryContentsClient.cs @@ -21,7 +21,7 @@ namespace Octokit.Reactive /// /// Returns the HTML rendered README. /// - /// The ID of the repository + /// The Id of the repository IObservable GetReadme(int repositoryId); /// @@ -34,7 +34,7 @@ namespace Octokit.Reactive /// /// Returns just the HTML portion of the README without the surrounding HTML document. /// - /// The ID of the repository + /// The Id of the repository IObservable GetReadmeHtml(int repositoryId); /// @@ -49,7 +49,7 @@ namespace Octokit.Reactive /// Get an archive of a given repository's contents /// /// https://developer.github.com/v3/repos/contents/#get-archive-link - /// The ID of the repository + /// The Id of the repository IObservable GetArchive(int repositoryId); /// @@ -65,7 +65,7 @@ namespace Octokit.Reactive /// Get an archive of a given repository's contents, in a specific format /// /// https://developer.github.com/v3/repos/contents/#get-archive-link - /// The ID of the repository + /// The Id of the repository /// The format of the archive. Can be either tarball or zipball IObservable GetArchive(int repositoryId, ArchiveFormat archiveFormat); @@ -83,7 +83,7 @@ namespace Octokit.Reactive /// Get an archive of a given repository's contents, using a specific format and reference /// /// https://developer.github.com/v3/repos/contents/#get-archive-link - /// The ID of the repository + /// The Id of the repository /// The format of the archive. Can be either tarball or zipball /// A valid Git reference. IObservable GetArchive(int repositoryId, ArchiveFormat archiveFormat, string reference); @@ -103,7 +103,7 @@ namespace Octokit.Reactive /// Get an archive of a given repository's contents, in a specific format /// /// https://developer.github.com/v3/repos/contents/#get-archive-link - /// The ID of the repository + /// The Id of the repository /// The format of the archive. Can be either tarball or zipball /// A valid Git reference. /// Time span until timeout @@ -126,7 +126,7 @@ namespace Octokit.Reactive /// /// If given a path to a single file, this method returns a collection containing only that file. /// - /// The ID of the repository + /// The Id of the repository /// The content path IObservable GetAllContents(int repositoryId, string path); @@ -140,7 +140,7 @@ namespace Octokit.Reactive /// /// Returns the contents of the root directory in a repository. /// - /// The ID of the repository + /// The Id of the repository IObservable GetAllContents(int repositoryId); /// @@ -163,7 +163,7 @@ namespace Octokit.Reactive /// If given a path to a single file, this method returns a collection containing only that file. /// See the API documentation for more information. /// - /// The ID of the repository + /// The Id of the repository /// The name of the commit/branch/tag. Default: the repository’s default branch (usually master) /// The content path IObservable GetAllContentsByRef(int repositoryId, string reference, string path); @@ -179,7 +179,7 @@ namespace Octokit.Reactive /// /// Returns the contents of the home directory in a repository. /// - /// The ID of the repository + /// The Id of the repository /// The name of the commit/branch/tag. Default: the repository’s default branch (usually master) IObservable GetAllContentsByRef(int repositoryId, string reference); @@ -195,7 +195,7 @@ namespace Octokit.Reactive /// /// Creates a commit that creates a new file in a repository. /// - /// The ID of the repository + /// The Id of the repository /// The path to the file /// Information about the file to create IObservable CreateFile(int repositoryId, string path, CreateFileRequest request); @@ -212,7 +212,7 @@ namespace Octokit.Reactive /// /// Creates a commit that updates the contents of a file in a repository. /// - /// The ID of the repository + /// The Id of the repository /// The path to the file /// Information about the file to update IObservable UpdateFile(int repositoryId, string path, UpdateFileRequest request); @@ -229,7 +229,7 @@ namespace Octokit.Reactive /// /// Creates a commit that deletes a file in a repository. /// - /// The ID of the repository + /// The Id of the repository /// The path to the file /// Information about the file to delete IObservable DeleteFile(int repositoryId, string path, DeleteFileRequest request); diff --git a/Octokit.Reactive/Clients/IObservableRepositoryDeployKeysClient.cs b/Octokit.Reactive/Clients/IObservableRepositoryDeployKeysClient.cs index 6ecf4db2..10b48db2 100644 --- a/Octokit.Reactive/Clients/IObservableRepositoryDeployKeysClient.cs +++ b/Octokit.Reactive/Clients/IObservableRepositoryDeployKeysClient.cs @@ -30,7 +30,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// The ID of the repository. + /// The Id of the repository. /// The id of the deploy key. [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")] IObservable Get(int repositoryId, int number); @@ -51,7 +51,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// The ID of the repository. + /// The Id of the repository. IObservable GetAll(int repositoryId); /// @@ -71,7 +71,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// The ID of the repository. + /// The Id of the repository. /// Options for changing the API response IObservable GetAll(int repositoryId, ApiOptions options); @@ -92,7 +92,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// The ID of the repository. + /// The Id of the repository. /// The deploy key to create for the repository. IObservable Create(int repositoryId, NewDeployKey newDeployKey); @@ -113,7 +113,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// The ID of the repository. + /// The Id of the repository. /// The id of the deploy key to delete. IObservable Delete(int repositoryId, int number); } diff --git a/Octokit.Reactive/Clients/IObservableRepositoryForksClient.cs b/Octokit.Reactive/Clients/IObservableRepositoryForksClient.cs index 8b9eecb5..e1c40c99 100644 --- a/Octokit.Reactive/Clients/IObservableRepositoryForksClient.cs +++ b/Octokit.Reactive/Clients/IObservableRepositoryForksClient.cs @@ -26,7 +26,7 @@ namespace Octokit.Reactive /// /// See API documentation for more information. /// - /// The ID of the repository + /// The Id of the repository IObservable GetAll(int repositoryId); /// @@ -46,7 +46,7 @@ namespace Octokit.Reactive /// /// See API documentation for more information. /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response IObservable GetAll(int repositoryId, ApiOptions options); @@ -67,7 +67,7 @@ namespace Octokit.Reactive /// /// See API documentation for more information. /// - /// The ID of the repository + /// The Id of the repository /// Used to request and filter a list of repository forks IObservable GetAll(int repositoryId, RepositoryForksListRequest request); @@ -89,7 +89,7 @@ namespace Octokit.Reactive /// /// See API documentation for more information. /// - /// The ID of the repository + /// The Id of the repository /// Used to request and filter a list of repository forks /// Options for changing the API response IObservable GetAll(int repositoryId, RepositoryForksListRequest request, ApiOptions options); @@ -111,7 +111,7 @@ namespace Octokit.Reactive /// /// See API documentation for more information. /// - /// The ID of the repository + /// The Id of the repository /// Used to fork a repository IObservable Create(int repositoryId, NewRepositoryFork fork); } diff --git a/Octokit.Reactive/Clients/IObservableRepositoryHooksClient.cs b/Octokit.Reactive/Clients/IObservableRepositoryHooksClient.cs index 0655373f..689a063e 100644 --- a/Octokit.Reactive/Clients/IObservableRepositoryHooksClient.cs +++ b/Octokit.Reactive/Clients/IObservableRepositoryHooksClient.cs @@ -23,7 +23,7 @@ namespace Octokit.Reactive /// /// Gets the list of hooks defined for a repository /// - /// The repository's ID + /// The Id of the repository /// See API documentation for more information. IObservable GetAll(int repositoryId); @@ -39,7 +39,7 @@ namespace Octokit.Reactive /// /// Gets the list of hooks defined for a repository /// - /// The repository's ID + /// The Id of the repository /// Options for changing the API response /// See API documentation for more information. IObservable GetAll(int repositoryId, ApiOptions options); @@ -57,7 +57,7 @@ namespace Octokit.Reactive /// /// Gets a single hook by Id /// - /// The repository's ID + /// The Id of the repository /// The repository's hook id /// See API documentation for more information. [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "This is ok; we're matching HTTP verbs not keyworks")] @@ -75,7 +75,7 @@ namespace Octokit.Reactive /// /// Creates a hook for a repository /// - /// The repository's ID + /// The Id of the repository /// The hook's parameters /// See API documentation for more information. IObservable Create(int repositoryId, NewRepositoryHook hook); @@ -93,7 +93,7 @@ namespace Octokit.Reactive /// /// Edits a hook for a repository /// - /// The repository's ID + /// The Id of the repository /// The repository's hook id /// The requested changes to an edit repository hook /// See API documentation for more information. @@ -113,7 +113,7 @@ namespace Octokit.Reactive /// /// Tests a hook for a repository /// - /// The repository's ID + /// The Id of the repository /// The repository's hook id /// See API documentation for more information. /// This will trigger the hook with the latest push to the current repository if the hook is subscribed to push events. If the hook @@ -132,7 +132,7 @@ namespace Octokit.Reactive /// /// This will trigger a ping event to be sent to the hook. /// - /// The repository's ID + /// The Id of the repository /// The repository's hook id /// See API documentation for more information. IObservable Ping(int repositoryId, int hookId); @@ -149,7 +149,7 @@ namespace Octokit.Reactive /// /// Deletes a hook for a repository /// - /// The repository's ID + /// The Id of the repository /// The repository's hook id /// See API documentation for more information. IObservable Delete(int repositoryId, int hookId); diff --git a/Octokit.Reactive/Clients/IObservableRepositoryPagesClient.cs b/Octokit.Reactive/Clients/IObservableRepositoryPagesClient.cs index 8b9c19ad..91be120f 100644 --- a/Octokit.Reactive/Clients/IObservableRepositoryPagesClient.cs +++ b/Octokit.Reactive/Clients/IObservableRepositoryPagesClient.cs @@ -25,7 +25,7 @@ namespace Octokit.Reactive /// /// Gets the page metadata for a given repository /// - /// The ID of the repository + /// The Id of the repository /// /// See the API documentation for more information. /// @@ -45,7 +45,7 @@ namespace Octokit.Reactive /// /// Gets all build metadata for a given repository /// - /// The ID of the repository + /// The Id of the repository /// /// See the API documentation for more information. /// @@ -65,7 +65,7 @@ namespace Octokit.Reactive /// /// Gets all build metadata for a given repository /// - /// The ID of the repository + /// The Id of the repository /// Options to change the API response /// /// See the API documentation for more information. @@ -85,7 +85,7 @@ namespace Octokit.Reactive /// /// Gets the build metadata for the last build for a given repository /// - /// The ID of the repository + /// The Id of the repository /// /// See the API documentation for more information. /// diff --git a/Octokit.Reactive/Clients/IObservableSshKeysClient.cs b/Octokit.Reactive/Clients/IObservableSshKeysClient.cs index b4f93c0c..ca191ec4 100644 --- a/Octokit.Reactive/Clients/IObservableSshKeysClient.cs +++ b/Octokit.Reactive/Clients/IObservableSshKeysClient.cs @@ -9,7 +9,7 @@ namespace Octokit.Reactive /// /// Retrieves the for the specified id. /// - /// The ID of the SSH key + /// The Id of the SSH key /// A [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")] [Obsolete("This method is obsolete. Please use User.Keys.Get(int) instead.")] @@ -45,7 +45,7 @@ namespace Octokit.Reactive /// /// Update the specified . /// - /// The ID of the SSH key + /// The Id of the SSH key /// The SSH Key contents /// Thrown if the client is not authenticated. /// A diff --git a/Octokit.Reactive/Clients/IObservableStarredClient.cs b/Octokit.Reactive/Clients/IObservableStarredClient.cs index 55ddef1a..01aaf245 100644 --- a/Octokit.Reactive/Clients/IObservableStarredClient.cs +++ b/Octokit.Reactive/Clients/IObservableStarredClient.cs @@ -21,7 +21,7 @@ namespace Octokit.Reactive /// /// Retrieves all of the stargazers for the passed repository /// - /// The ID of the repository + /// The Id of the repository /// Thrown if the client is not authenticated IObservable GetAllStargazers(int repositoryId); @@ -37,7 +37,7 @@ namespace Octokit.Reactive /// /// Retrieves all of the stargazers for the passed repository /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response /// Thrown if the client is not authenticated IObservable GetAllStargazers(int repositoryId, ApiOptions options); @@ -53,7 +53,7 @@ namespace Octokit.Reactive /// /// Retrieves all of the stargazers for the passed repository with star creation timestamps. /// - /// The ID of the repository + /// The Id of the repository /// Thrown if the client is not authenticated. IObservable GetAllStargazersWithTimestamps(int repositoryId); @@ -69,7 +69,7 @@ namespace Octokit.Reactive /// /// Retrieves all of the stargazers for the passed repository with star creation timestamps. /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response /// Thrown if the client is not authenticated. IObservable GetAllStargazersWithTimestamps(int repositoryId, ApiOptions options); diff --git a/Octokit.Reactive/Clients/IObservableStatisticsClient.cs b/Octokit.Reactive/Clients/IObservableStatisticsClient.cs index 798602c4..4b78b3b1 100644 --- a/Octokit.Reactive/Clients/IObservableStatisticsClient.cs +++ b/Octokit.Reactive/Clients/IObservableStatisticsClient.cs @@ -21,7 +21,7 @@ namespace Octokit.Reactive /// /// Returns a list of for the given repository /// - /// The ID of the repository + /// The Id of the repository IObservable> GetContributors(int repositoryId); /// @@ -34,7 +34,7 @@ namespace Octokit.Reactive /// /// Returns the last year of commit activity grouped by week. /// - /// The ID of the repository + /// The Id of the repository IObservable GetCommitActivity(int repositoryId); /// @@ -47,7 +47,7 @@ namespace Octokit.Reactive /// /// Returns a weekly aggregate of the number of additions and deletions pushed to a repository. /// - /// The ID of the repository + /// The Id of the repository IObservable GetCodeFrequency(int repositoryId); /// @@ -60,7 +60,7 @@ namespace Octokit.Reactive /// /// Returns the total commit counts for the owner and total commit counts in total. /// - /// The ID of the repository + /// The Id of the repository IObservable GetParticipation(int repositoryId); /// @@ -73,7 +73,7 @@ namespace Octokit.Reactive /// /// Returns a list of the number of commits per hour in each day /// - /// The ID of the repository + /// The Id of the repository IObservable GetPunchCard(int repositoryId); } } \ No newline at end of file diff --git a/Octokit.Reactive/Clients/IObservableTagsClient.cs b/Octokit.Reactive/Clients/IObservableTagsClient.cs index dbe396e3..2b8f358e 100644 --- a/Octokit.Reactive/Clients/IObservableTagsClient.cs +++ b/Octokit.Reactive/Clients/IObservableTagsClient.cs @@ -30,7 +30,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/git/tags/#get-a-tag /// - /// The ID of the repository + /// The Id of the repository /// Tha sha reference of the tag [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] @@ -53,7 +53,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/git/tags/#create-a-tag-object /// - /// The ID of the repository + /// The Id of the repository /// The tag to create IObservable Create(int repositoryId, NewTag tag); } diff --git a/Octokit.Reactive/Clients/IObservableTreesClient.cs b/Octokit.Reactive/Clients/IObservableTreesClient.cs index 5bcdf476..389ce053 100644 --- a/Octokit.Reactive/Clients/IObservableTreesClient.cs +++ b/Octokit.Reactive/Clients/IObservableTreesClient.cs @@ -28,7 +28,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/git/trees/#get-a-tree /// - /// The ID of the repository + /// The Id of the repository /// The SHA that references the tree [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")] IObservable Get(int repositoryId, string reference); @@ -50,7 +50,7 @@ namespace Octokit.Reactive /// /// https://developer.github.com/v3/git/trees/#get-a-tree-recursively /// - /// The ID of the repository + /// The Id of the repository /// The SHA that references the tree IObservable GetRecursive(int repositoryId, string reference); @@ -71,7 +71,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/git/trees/#create-a-tree /// - /// The ID of the repository + /// The Id of the repository /// The value of the new tree IObservable Create(int repositoryId, NewTree newTree); } diff --git a/Octokit.Reactive/Clients/IObservableUserGpgKeysClient.cs b/Octokit.Reactive/Clients/IObservableUserGpgKeysClient.cs index bd3ce360..89894c2d 100644 --- a/Octokit.Reactive/Clients/IObservableUserGpgKeysClient.cs +++ b/Octokit.Reactive/Clients/IObservableUserGpgKeysClient.cs @@ -39,11 +39,11 @@ namespace Octokit.Reactive /// /// View extended details of the for the specified id. /// - /// The ID of the GPG key + /// The Id of the GPG key /// /// See the API documentation for more information. /// - /// The for the specified ID. + /// The for the specified Id. [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")] IObservable Get(int id); @@ -59,9 +59,9 @@ namespace Octokit.Reactive IObservable Create(NewGpgKey newGpgKey); /// - /// Deletes the GPG key for the specified ID. + /// Deletes the GPG key for the specified Id. /// - /// The ID of the GPG key to delete. + /// The Id of the GPG key to delete. /// /// See the API documentation for more information. /// diff --git a/Octokit.Reactive/Clients/IObservableUserKeysClient.cs b/Octokit.Reactive/Clients/IObservableUserKeysClient.cs index 333a479c..0da31127 100644 --- a/Octokit.Reactive/Clients/IObservableUserKeysClient.cs +++ b/Octokit.Reactive/Clients/IObservableUserKeysClient.cs @@ -60,7 +60,7 @@ namespace Octokit.Reactive /// /// https://developer.github.com/v3/users/keys/#get-a-single-public-key /// - /// The ID of the SSH key + /// The Id of the SSH key /// View extended details for a single public key. [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")] IObservable Get(int id); diff --git a/Octokit.Reactive/Clients/IObservableWatchedClient.cs b/Octokit.Reactive/Clients/IObservableWatchedClient.cs index 52f03c19..281f0ace 100644 --- a/Octokit.Reactive/Clients/IObservableWatchedClient.cs +++ b/Octokit.Reactive/Clients/IObservableWatchedClient.cs @@ -22,7 +22,7 @@ namespace Octokit.Reactive /// /// Retrieves all of the watchers for the passed repository /// - /// The ID of the repository + /// The Id of the repository /// Thrown if the client is not authenticated IObservable GetAllWatchers(int repositoryId); @@ -38,7 +38,7 @@ namespace Octokit.Reactive /// /// Retrieves all of the watchers for the passed repository /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API's response. /// Thrown if the client is not authenticated IObservable GetAllWatchers(int repositoryId, ApiOptions options); @@ -83,7 +83,7 @@ namespace Octokit.Reactive /// /// Check if a repository is watched by the current authenticated user /// - /// The ID of the repository + /// The Id of the repository /// Thrown if the client is not authenticated IObservable CheckWatched(int repositoryId); @@ -98,7 +98,7 @@ namespace Octokit.Reactive /// /// Stars a repository for the authenticated user. /// - /// The ID of the repository + /// The Id of the repository /// A instance describing the new subscription to create IObservable WatchRepo(int repositoryId, NewSubscription newSubscription); @@ -114,7 +114,7 @@ namespace Octokit.Reactive /// /// Unstars a repository for the authenticated user. /// - /// The ID of the repository + /// The Id of the repository [SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Unwatch", Justification = "Unwatch is consistent with the GitHub website")] IObservable UnwatchRepo(int repositoryId); diff --git a/Octokit.Reactive/Clients/ObservableAssigneesClient.cs b/Octokit.Reactive/Clients/ObservableAssigneesClient.cs index 5006e20c..e650ed7b 100644 --- a/Octokit.Reactive/Clients/ObservableAssigneesClient.cs +++ b/Octokit.Reactive/Clients/ObservableAssigneesClient.cs @@ -39,7 +39,7 @@ namespace Octokit.Reactive /// /// Gets all the available assignees (owner + collaborators) to which issues may be assigned. /// - /// The ID of the repository + /// The Id of the repository public IObservable GetAllForRepository(int repositoryId) { return GetAllForRepository(repositoryId, ApiOptions.None); @@ -63,7 +63,7 @@ namespace Octokit.Reactive /// /// Gets all the available assignees (owner + collaborators) to which issues may be assigned. /// - /// The ID of the repository + /// The Id of the repository /// The options to change API's behaviour. public IObservable GetAllForRepository(int repositoryId, ApiOptions options) { @@ -90,7 +90,7 @@ namespace Octokit.Reactive /// /// Checks to see if a user is an assignee for a repository. /// - /// The ID of the repository + /// The Id of the repository /// Username of the prospective assignee public IObservable CheckAssignee(int repositoryId, string assignee) { diff --git a/Octokit.Reactive/Clients/ObservableAuthorizationsClient.cs b/Octokit.Reactive/Clients/ObservableAuthorizationsClient.cs index fa1956a0..2f131ebf 100644 --- a/Octokit.Reactive/Clients/ObservableAuthorizationsClient.cs +++ b/Octokit.Reactive/Clients/ObservableAuthorizationsClient.cs @@ -119,7 +119,7 @@ namespace Octokit.Reactive /// This method requires authentication. /// See the API documentation for more information. /// - /// Client ID of the OAuth application for the token + /// Client Id of the OAuth application for the token /// The client secret /// Describes the new authorization to create /// @@ -150,7 +150,7 @@ namespace Octokit.Reactive /// This method requires authentication. /// See the API documentation for more information. /// - /// Client ID of the OAuth application for the token + /// Client Id of the OAuth application for the token /// The client secret /// The two-factor authentication code in response to the current user's previous challenge /// Describes the new authorization to create @@ -185,7 +185,7 @@ namespace Octokit.Reactive /// See API /// documentation for more details. /// - /// Client ID for the OAuth application that is requesting the token + /// Client Id for the OAuth application that is requesting the token /// The client secret /// Defines the scopes and metadata for the token /// Thrown when the user does not have permission to make @@ -215,7 +215,7 @@ namespace Octokit.Reactive /// See API /// documentation for more details. /// - /// Client ID for the OAuth application that is requesting the token + /// Client Id for the OAuth application that is requesting the token /// The client secret /// Defines the scopes and metadata for the token /// The two-factor authentication code provided by the user @@ -251,7 +251,7 @@ namespace Octokit.Reactive /// This method requires authentication. /// See the API documentation for more information. /// - /// Client ID of the OAuth application for the token + /// Client Id of the OAuth application for the token /// The OAuth token to check /// The valid . public IObservable CheckApplicationAuthentication(string clientId, string accessToken) @@ -340,7 +340,7 @@ namespace Octokit.Reactive /// See the API /// documentation for more details. /// - /// The system-wide ID of the authorization to delete + /// The system-wide Id of the authorization to delete /// /// Thrown when the current user does not have permission to make the request. /// @@ -358,7 +358,7 @@ namespace Octokit.Reactive /// See the API /// documentation for more details. /// - /// The system-wide ID of the authorization to delete + /// The system-wide Id of the authorization to delete /// Two factor authorization code /// /// Thrown when the current user does not have permission to make the request. diff --git a/Octokit.Reactive/Clients/ObservableBlobClient.cs b/Octokit.Reactive/Clients/ObservableBlobClient.cs index 2f120e70..17538918 100644 --- a/Octokit.Reactive/Clients/ObservableBlobClient.cs +++ b/Octokit.Reactive/Clients/ObservableBlobClient.cs @@ -44,7 +44,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/git/blobs/#get-a-blob /// - /// The ID of the repository + /// The Id of the repository /// The SHA of the blob public IObservable Get(int repositoryId, string reference) { @@ -77,7 +77,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/git/blobs/#create-a-blob /// - /// The ID of the repository + /// The Id of the repository /// The new Blob public IObservable Create(int repositoryId, NewBlob newBlob) { diff --git a/Octokit.Reactive/Clients/ObservableCommitCommentReactionsClient.cs b/Octokit.Reactive/Clients/ObservableCommitCommentReactionsClient.cs index 7b138355..91aa0a43 100644 --- a/Octokit.Reactive/Clients/ObservableCommitCommentReactionsClient.cs +++ b/Octokit.Reactive/Clients/ObservableCommitCommentReactionsClient.cs @@ -45,7 +45,7 @@ namespace Octokit.Reactive /// Creates a reaction for a specified Commit Comment /// /// https://developer.github.com/v3/reactions/#create-reaction-for-a-commit-comment - /// The ID of the repository + /// The Id of the repository /// The comment id /// The reaction to create /// diff --git a/Octokit.Reactive/Clients/ObservableCommitStatusClient.cs b/Octokit.Reactive/Clients/ObservableCommitStatusClient.cs index a657c100..7cbbd7d6 100644 --- a/Octokit.Reactive/Clients/ObservableCommitStatusClient.cs +++ b/Octokit.Reactive/Clients/ObservableCommitStatusClient.cs @@ -45,7 +45,7 @@ namespace Octokit.Reactive /// a tag name. /// /// Only users with pull access can see this. - /// The ID of the repository + /// The Id of the repository /// The reference (SHA, branch name, or tag name) to list commits for public IObservable GetAll(int repositoryId, string reference) { @@ -78,7 +78,7 @@ namespace Octokit.Reactive /// a tag name. /// /// Only users with pull access can see this. - /// The ID of the repository + /// The Id of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// Options for changing the API response public IObservable GetAll(int repositoryId, string reference, ApiOptions options) @@ -111,7 +111,7 @@ namespace Octokit.Reactive /// a tag name. /// /// Only users with pull access can see this. - /// The ID of the repository + /// The Id of the repository /// The reference (SHA, branch name, or tag name) to list commits for public IObservable GetCombined(int repositoryId, string reference) { @@ -140,7 +140,7 @@ namespace Octokit.Reactive /// /// Creates a commit status for the specified ref. /// - /// The ID of the repository + /// The Id of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// The commit status to create public IObservable Create(int repositoryId, string reference, NewCommitStatus newCommitStatus) diff --git a/Octokit.Reactive/Clients/ObservableCommitsClient.cs b/Octokit.Reactive/Clients/ObservableCommitsClient.cs index 32dc38cc..6ad6b6b8 100644 --- a/Octokit.Reactive/Clients/ObservableCommitsClient.cs +++ b/Octokit.Reactive/Clients/ObservableCommitsClient.cs @@ -44,7 +44,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/git/commits/#get-a-commit /// - /// The ID of the repository + /// The Id of the repository /// Tha sha reference of the commit public IObservable Get(int repositoryId, string reference) { @@ -77,7 +77,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/git/commits/#create-a-commit /// - /// The ID of the repository + /// The Id of the repository /// The commit to create public IObservable Create(int repositoryId, NewCommit commit) { diff --git a/Octokit.Reactive/Clients/ObservableDeploymentStatusClient.cs b/Octokit.Reactive/Clients/ObservableDeploymentStatusClient.cs index eb8b4af0..76b0de2d 100644 --- a/Octokit.Reactive/Clients/ObservableDeploymentStatusClient.cs +++ b/Octokit.Reactive/Clients/ObservableDeploymentStatusClient.cs @@ -49,7 +49,7 @@ namespace Octokit.Reactive.Clients /// /// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses /// - /// The ID of the repository. + /// The Id of the repository. /// The id of the deployment. public IObservable GetAll(int repositoryId, int deploymentId) { @@ -84,7 +84,7 @@ namespace Octokit.Reactive.Clients /// /// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses /// - /// The ID of the repository. + /// The Id of the repository. /// The id of the deployment. /// Options for changing the API response public IObservable GetAll(int repositoryId, int deploymentId, ApiOptions options) @@ -122,7 +122,7 @@ namespace Octokit.Reactive.Clients /// /// http://developer.github.com/v3/repos/deployments/#create-a-deployment-status /// - /// The ID of the repository. + /// The Id of the repository. /// The id of the deployment. /// The new deployment status to create. public IObservable Create(int repositoryId, int deploymentId, NewDeploymentStatus newDeploymentStatus) diff --git a/Octokit.Reactive/Clients/ObservableDeploymentsClient.cs b/Octokit.Reactive/Clients/ObservableDeploymentsClient.cs index 80bd1e5d..e3b8f32b 100644 --- a/Octokit.Reactive/Clients/ObservableDeploymentsClient.cs +++ b/Octokit.Reactive/Clients/ObservableDeploymentsClient.cs @@ -50,7 +50,7 @@ namespace Octokit.Reactive.Clients /// /// http://developer.github.com/v3/repos/deployments/#list-deployments /// - /// The ID of the repository + /// The Id of the repository public IObservable GetAll(int repositoryId) { return GetAll(repositoryId, ApiOptions.None); @@ -83,7 +83,7 @@ namespace Octokit.Reactive.Clients /// /// http://developer.github.com/v3/repos/deployments/#list-deployments /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response public IObservable GetAll(int repositoryId, ApiOptions options) { @@ -117,7 +117,7 @@ namespace Octokit.Reactive.Clients /// /// http://developer.github.com/v3/repos/deployments/#create-a-deployment /// - /// The ID of the repository + /// The Id of the repository /// A instance describing the new deployment to create public IObservable Create(int repositoryId, NewDeployment newDeployment) { diff --git a/Octokit.Reactive/Clients/ObservableEventsClient.cs b/Octokit.Reactive/Clients/ObservableEventsClient.cs index dbfd2315..fbe85259 100644 --- a/Octokit.Reactive/Clients/ObservableEventsClient.cs +++ b/Octokit.Reactive/Clients/ObservableEventsClient.cs @@ -67,7 +67,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository /// - /// The ID of the repository + /// The Id of the repository public IObservable GetAllForRepository(int repositoryId) { return GetAllForRepository(repositoryId, ApiOptions.None); @@ -97,7 +97,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response public IObservable GetAllForRepository(int repositoryId, ApiOptions options) { @@ -128,7 +128,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository /// - /// The ID of the repository + /// The Id of the repository public IObservable GetAllIssuesForRepository(int repositoryId) { return GetAllIssuesForRepository(repositoryId, ApiOptions.None); @@ -158,7 +158,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response public IObservable GetAllIssuesForRepository(int repositoryId, ApiOptions options) { diff --git a/Octokit.Reactive/Clients/ObservableIssueCommentReactionsClient.cs b/Octokit.Reactive/Clients/ObservableIssueCommentReactionsClient.cs index e804a5e9..138f4d5a 100644 --- a/Octokit.Reactive/Clients/ObservableIssueCommentReactionsClient.cs +++ b/Octokit.Reactive/Clients/ObservableIssueCommentReactionsClient.cs @@ -44,7 +44,7 @@ namespace Octokit.Reactive /// Creates a reaction for a specified Issue Comment /// /// https://developer.github.com/v3/reactions/#create-reaction-for-an-issue-comment - /// The ID of the repository + /// The Id of the repository /// The comment id /// The reaction to create public IObservable Create(int repositoryId, int number, NewReaction reaction) @@ -73,7 +73,7 @@ namespace Octokit.Reactive /// List reactions for a specified Issue Comment /// /// https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment - /// The ID of the repository + /// The Id of the repository /// The comment id public IObservable GetAll(int repositoryId, int number) { diff --git a/Octokit.Reactive/Clients/ObservableIssueCommentsClient.cs b/Octokit.Reactive/Clients/ObservableIssueCommentsClient.cs index 37b42c67..2fbc7dbb 100644 --- a/Octokit.Reactive/Clients/ObservableIssueCommentsClient.cs +++ b/Octokit.Reactive/Clients/ObservableIssueCommentsClient.cs @@ -43,7 +43,7 @@ namespace Octokit.Reactive /// Gets a single Issue Comment by id. /// /// http://developer.github.com/v3/issues/comments/#get-a-single-comment - /// The ID of the repository + /// The Id of the repository /// The issue comment id public IObservable Get(int repositoryId, int id) { @@ -68,7 +68,7 @@ namespace Octokit.Reactive /// Gets Issue Comments for a repository. /// /// http://developer.github.com/v3/issues/comments/#list-comments-in-a-repository - /// The ID of the repository + /// The Id of the repository public IObservable GetAllForRepository(int repositoryId) { return GetAllForRepository(repositoryId, ApiOptions.None); @@ -94,7 +94,7 @@ namespace Octokit.Reactive /// Gets Issue Comments for a repository. /// /// http://developer.github.com/v3/issues/comments/#list-comments-in-a-repository - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response public IObservable GetAllForRepository(int repositoryId, ApiOptions options) { @@ -122,7 +122,7 @@ namespace Octokit.Reactive /// Gets Issue Comments for a specified Issue. /// /// http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue - /// The ID of the repository + /// The Id of the repository /// The issue number public IObservable GetAllForIssue(int repositoryId, int number) { @@ -150,7 +150,7 @@ namespace Octokit.Reactive /// Gets Issue Comments for a specified Issue. /// /// http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue - /// The ID of the repository + /// The Id of the repository /// The issue number /// Options for changing the API response public IObservable GetAllForIssue(int repositoryId, int number, ApiOptions options) @@ -181,7 +181,7 @@ namespace Octokit.Reactive /// Creates a new Issue Comment for a specified Issue. /// /// http://developer.github.com/v3/issues/comments/#create-a-comment - /// The ID of the repository + /// The Id of the repository /// The number of the issue /// The text of the new comment public IObservable Create(int repositoryId, int number, string newComment) @@ -212,7 +212,7 @@ namespace Octokit.Reactive /// Updates a specified Issue Comment. /// /// http://developer.github.com/v3/issues/comments/#edit-a-comment - /// The ID of the repository + /// The Id of the repository /// The comment id /// The modified comment public IObservable Update(int repositoryId, int id, string commentUpdate) @@ -241,7 +241,7 @@ namespace Octokit.Reactive /// Deletes the specified Issue Comment /// /// http://developer.github.com/v3/issues/comments/#delete-a-comment - /// The ID of the repository + /// The Id of the repository /// The comment id public IObservable Delete(int repositoryId, int id) { diff --git a/Octokit.Reactive/Clients/ObservableIssueReactionsClient.cs b/Octokit.Reactive/Clients/ObservableIssueReactionsClient.cs index 2f7acc34..8a24c262 100644 --- a/Octokit.Reactive/Clients/ObservableIssueReactionsClient.cs +++ b/Octokit.Reactive/Clients/ObservableIssueReactionsClient.cs @@ -42,7 +42,7 @@ namespace Octokit.Reactive /// List reactions for a specified Issue. /// /// https://developer.github.com/v3/reactions/#list-reactions-for-an-issue - /// The ID of the repository + /// The Id of the repository /// The issue id public IObservable GetAll(int repositoryId, int number) { @@ -70,7 +70,7 @@ namespace Octokit.Reactive /// Creates a reaction for a specified Issue. /// /// https://developer.github.com/v3/reactions/#create-reaction-for-an-issue - /// The ID of the repository + /// The Id of the repository /// The issue id /// The reaction to create public IObservable Create(int repositoryId, int number, NewReaction reaction) diff --git a/Octokit.Reactive/Clients/ObservableIssuesClient.cs b/Octokit.Reactive/Clients/ObservableIssuesClient.cs index 97c4c021..5156fe68 100644 --- a/Octokit.Reactive/Clients/ObservableIssuesClient.cs +++ b/Octokit.Reactive/Clients/ObservableIssuesClient.cs @@ -79,7 +79,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/#get-a-single-issue /// - /// The ID of the repository + /// The Id of the repository /// The issue number public IObservable Get(int repositoryId, int number) { @@ -292,7 +292,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/#list-issues-for-a-repository /// - /// The ID of the repository + /// The Id of the repository public IObservable GetAllForRepository(int repositoryId) { return GetAllForRepository(repositoryId, ApiOptions.None); @@ -322,7 +322,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/#list-issues-for-a-repository /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response public IObservable GetAllForRepository(int repositoryId, ApiOptions options) { @@ -355,7 +355,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/#list-issues-for-a-repository /// - /// The ID of the repository + /// The Id of the repository /// Used to filter and sort the list of issues returned public IObservable GetAllForRepository(int repositoryId, RepositoryIssueRequest request) { @@ -390,7 +390,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/#list-issues-for-a-repository /// - /// The ID of the repository + /// The Id of the repository /// Used to filter and sort the list of issues returned /// Options for changing the API response public IObservable GetAllForRepository(int repositoryId, RepositoryIssueRequest request, ApiOptions options) @@ -423,7 +423,7 @@ namespace Octokit.Reactive /// issue. /// /// http://developer.github.com/v3/issues/#create-an-issue - /// The ID of the repository + /// The Id of the repository /// A instance describing the new issue to create public IObservable Create(int repositoryId, NewIssue newIssue) { @@ -456,7 +456,7 @@ namespace Octokit.Reactive /// issue. /// /// http://developer.github.com/v3/issues/#create-an-issue - /// The ID of the repository + /// The Id of the repository /// The issue number /// An instance describing the changes to make to the issue /// @@ -486,7 +486,7 @@ namespace Octokit.Reactive /// Locks an issue for the specified repository. Issue owners and users with push access can lock an issue. /// /// https://developer.github.com/v3/issues/#lock-an-issue - /// The ID of the repository + /// The Id of the repository /// The issue number public IObservable Lock(int repositoryId, int number) { @@ -512,7 +512,7 @@ namespace Octokit.Reactive /// Unlocks an issue for the specified repository. Issue owners and users with push access can unlock an issue. /// /// https://developer.github.com/v3/issues/#unlock-an-issue - /// The ID of the repository + /// The Id of the repository /// The issue number public IObservable Unlock(int repositoryId, int number) { diff --git a/Octokit.Reactive/Clients/ObservableIssuesEventsClient.cs b/Octokit.Reactive/Clients/ObservableIssuesEventsClient.cs index 3de37836..9d3573a1 100644 --- a/Octokit.Reactive/Clients/ObservableIssuesEventsClient.cs +++ b/Octokit.Reactive/Clients/ObservableIssuesEventsClient.cs @@ -46,7 +46,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/events/#list-events-for-an-issue /// - /// The ID of the repository + /// The Id of the repository /// The issue number public IObservable GetAllForIssue(int repositoryId, int number) { @@ -78,7 +78,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/events/#list-events-for-an-issue /// - /// The ID of the repository + /// The Id of the repository /// The issue number /// Options for changing the API response public IObservable GetAllForIssue(int repositoryId, int number, ApiOptions options) @@ -110,7 +110,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/events/#list-events-for-a-repository /// - /// The ID of the repository + /// The Id of the repository public IObservable GetAllForRepository(int repositoryId) { return GetAllForRepository(repositoryId, ApiOptions.None); @@ -140,7 +140,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/events/#list-events-for-a-repository /// - /// The ID of the repository + /// The Id of the repository /// Options for changing the API response public IObservable GetAllForRepository(int repositoryId, ApiOptions options) { @@ -172,7 +172,7 @@ namespace Octokit.Reactive /// /// http://developer.github.com/v3/issues/events/#get-a-single-event /// - /// The ID of the repository + /// The Id of the repository /// The event id public IObservable Get(int repositoryId, int number) { diff --git a/Octokit.Reactive/Clients/ObservableIssuesLabelsClient.cs b/Octokit.Reactive/Clients/ObservableIssuesLabelsClient.cs index 1c684e44..6a5bc561 100644 --- a/Octokit.Reactive/Clients/ObservableIssuesLabelsClient.cs +++ b/Octokit.Reactive/Clients/ObservableIssuesLabelsClient.cs @@ -48,7 +48,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// The ID of the repository + /// The Id of the repository /// The number of the issue public IObservable