diff --git a/plugins/github/src/org/jetbrains/plugins/github/GithubOpenInBrowserAction.java b/plugins/github/src/org/jetbrains/plugins/github/GithubOpenInBrowserAction.java index 1e7337aa693d..bb4aad8f44b9 100644 --- a/plugins/github/src/org/jetbrains/plugins/github/GithubOpenInBrowserAction.java +++ b/plugins/github/src/org/jetbrains/plugins/github/GithubOpenInBrowserAction.java @@ -182,7 +182,7 @@ public class GithubOpenInBrowserAction extends DumbAwareAction { if (editor.getDocument().getLineStartOffset(end - 1) == selectionEnd) { end -= 1; } - builder.append("#L").append(begin).append('-').append(end); + builder.append("#L").append(begin).append("-L").append(end); } return builder.toString();