diff --git a/src/main/java/com/cloudbees/jenkins/plugins/bitbucket/client/pullrequest/BitbucketPullRequestValueDestination.java b/src/main/java/com/cloudbees/jenkins/plugins/bitbucket/client/pullrequest/BitbucketPullRequestValueDestination.java index 7d6b5ffa7..1939ed435 100644 --- a/src/main/java/com/cloudbees/jenkins/plugins/bitbucket/client/pullrequest/BitbucketPullRequestValueDestination.java +++ b/src/main/java/com/cloudbees/jenkins/plugins/bitbucket/client/pullrequest/BitbucketPullRequestValueDestination.java @@ -52,7 +52,7 @@ public BitbucketPullRequestValueDestination(@NonNull @JsonProperty("repository") // It is possible for a PR's original destination to no longer exist. if(this.branch != null && this.commit != null) { - // redound available the information into impl objects + // Make the commit information available into impl objects this.branch.setRawNode(commit.getHash()); } } diff --git a/src/main/java/com/cloudbees/jenkins/plugins/bitbucket/client/pullrequest/BitbucketPullRequestValueRepository.java b/src/main/java/com/cloudbees/jenkins/plugins/bitbucket/client/pullrequest/BitbucketPullRequestValueRepository.java index c7c406fc7..e605a9871 100644 --- a/src/main/java/com/cloudbees/jenkins/plugins/bitbucket/client/pullrequest/BitbucketPullRequestValueRepository.java +++ b/src/main/java/com/cloudbees/jenkins/plugins/bitbucket/client/pullrequest/BitbucketPullRequestValueRepository.java @@ -49,7 +49,7 @@ public BitbucketPullRequestValueRepository(@JsonProperty("repository") Bitbucket // It is possible for a PR's original source to no longer exist. if(branch != null && commit != null) { - // redound available the information into impl objects + // Make the commit information available into impl objects this.branch.setRawNode(commit.getHash()); } }