diff --git a/docs/RepositoryApi.md b/docs/RepositoryApi.md index 31f4311..8e7c165 100644 --- a/docs/RepositoryApi.md +++ b/docs/RepositoryApi.md @@ -83,7 +83,7 @@ Method | HTTP request | Description [**repoGetBranchProtection**](RepositoryApi.md#repoGetBranchProtection) | **GET** repos/{owner}/{repo}/branch_protections/{name} | Get a specific branch protection for the repository [**repoGetByID**](RepositoryApi.md#repoGetByID) | **GET** repositories/{id} | Get a repository by id [**repoGetCombinedStatusByRef**](RepositoryApi.md#repoGetCombinedStatusByRef) | **GET** repos/{owner}/{repo}/commits/{ref}/status | Get a commit's combined status, by branch/tag/commit reference -[**repoGetCommitPullRequest**](RepositoryApi.md#repoGetCommitPullRequest) | **GET** repos/{owner}/{repo}/commits/{sha}/pull | Get the pull request of the commit +[**repoGetCommitPullRequest**](RepositoryApi.md#repoGetCommitPullRequest) | **GET** repos/{owner}/{repo}/commits/{sha}/pull | Get the merged pull request of the commit [**repoGetContents**](RepositoryApi.md#repoGetContents) | **GET** repos/{owner}/{repo}/contents/{filepath} | Gets the metadata and contents (if a file) of an entry in a repository, or a list of entries if a dir [**repoGetContentsList**](RepositoryApi.md#repoGetContentsList) | **GET** repos/{owner}/{repo}/contents | Gets the metadata of all the entries of the root dir [**repoGetEditorConfig**](RepositoryApi.md#repoGetEditorConfig) | **GET** repos/{owner}/{repo}/editorconfig/{filepath} | Get the EditorConfig definitions of a file in a repository @@ -7517,7 +7517,7 @@ Name | Type | Description | Notes # **repoGetCommitPullRequest** > PullRequest repoGetCommitPullRequest(owner, repo, sha) -Get the pull request of the commit +Get the merged pull request of the commit ### Example ```java diff --git a/src/main/java/org/gitnex/tea4j/v2/apis/RepositoryApi.java b/src/main/java/org/gitnex/tea4j/v2/apis/RepositoryApi.java index c767c8f..d3a928a 100644 --- a/src/main/java/org/gitnex/tea4j/v2/apis/RepositoryApi.java +++ b/src/main/java/org/gitnex/tea4j/v2/apis/RepositoryApi.java @@ -1320,7 +1320,7 @@ public interface RepositoryApi { @retrofit2.http.Query("limit") Integer limit); /** - * Get the pull request of the commit + * Get the merged pull request of the commit * * @param owner owner of the repo (required) * @param repo name of the repo (required)