diff options
author | John Wiegley <johnw@newartisans.com> | 2015-01-02 17:32:19 -0600 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2015-01-02 17:32:19 -0600 |
commit | 7252e29ec4fc482649b087c8b62de924c9ec8ca7 (patch) | |
tree | 74e22dec16404bfccd12b23c7727f58fa954ebcb /lisp/use-package | |
parent | 647950fd161c5a00e0d6d3a950fd0032ded2ed1a (diff) | |
parent | 7db9b920dfb8571b6a8a942dad6f70f471a7580b (diff) | |
download | emacs-7252e29ec4fc482649b087c8b62de924c9ec8ca7.tar.gz emacs-7252e29ec4fc482649b087c8b62de924c9ec8ca7.tar.bz2 emacs-7252e29ec4fc482649b087c8b62de924c9ec8ca7.zip |
Merge pull request from thiagowfx/patch-1
fix small typo (key > keymap)
GitHub-reference: https://github.com/jwiegley/use-package/issues/144
Diffstat (limited to 'lisp/use-package')
-rw-r--r-- | lisp/use-package/bind-key.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/use-package/bind-key.el b/lisp/use-package/bind-key.el index 2ac32365ecf..fd143888d5d 100644 --- a/lisp/use-package/bind-key.el +++ b/lisp/use-package/bind-key.el @@ -41,7 +41,7 @@ ;; ;; (bind-key* "<C-return>" 'other-window) ;; -;; If you want to rebind a key only in a particular key, use: +;; If you want to rebind a key only in a particular keymap, use: ;; ;; (bind-key "C-c x" 'my-ctrl-c-x-command some-other-mode-map) ;; |