Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a command name #387

Merged
merged 1 commit into from
Dec 31, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ You can install `Elixir-Mode` manually by placing `Elixir-Mode` on your `load-pa
<td>Switches to elixir-mode.</td>
</tr>
<tr>
<td><code>elixir-mode-opengithub</code></td>
<td><code>elixir-mode-open-github</code></td>
<td>Open the GitHub page for Elixir.</td>
</tr>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions elixir-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ is used to limit the scan."
1 font-lock-negation-char-face)))

;;;###autoload
(defun elixir-mode-open-modegithub ()
(defun elixir-mode-open-github ()
"Elixir mode open GitHub page."
(interactive)
(browse-url "https://github.com/elixir-lang/emacs-elixir"))
Expand Down Expand Up @@ -498,7 +498,7 @@ just return nil."
'("Elixir"
["Indent line" smie-indent-line]
"---"
["elixir-mode on GitHub" elixir-mode-open-modegithub]
["elixir-mode on GitHub" elixir-mode-open-github]
["Elixir homepage" elixir-mode-open-elixir-home]
["About" elixir-mode-version]))

Expand Down