Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit cb7bfc6

Browse files
committed
Made naming even more consistent
1 parent 0af069c commit cb7bfc6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GitHub.App/ViewModels/PullRequestListViewModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public PullRequestListViewModel(
113113
CreatePullRequest.Subscribe(_ => DoCreatePullRequest());
114114

115115
OpenPullRequestOnGitHub = ReactiveCommand.Create();
116-
OpenPullRequestOnGitHub.Subscribe(x => DoOpenPROnGitHub((int)x));
116+
OpenPullRequestOnGitHub.Subscribe(x => DoOpenPullRequestOnGitHub((int)x));
117117

118118
constructing = false;
119119
}
@@ -344,7 +344,7 @@ void DoCreatePullRequest()
344344
navigate.OnNext(d);
345345
}
346346

347-
void DoOpenPROnGitHub(int pullRequest)
347+
void DoOpenPullRequestOnGitHub(int pullRequest)
348348
{
349349
var repoUrl = SelectedRepository.CloneUrl.ToRepositoryUrl();
350350
var url = repoUrl.Append("pull/" + pullRequest);

0 commit comments

Comments
 (0)