branch: elpa/slime
commit b1e774c7a1da74fa4b97dd5298d23466c06f9032
Author: Maximilian Geismann <[email protected]>
Commit: Stas Boukarev <[email protected]>
Fix an indentation and a typo in a comment
---
contrib/slime-autodoc.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/contrib/slime-autodoc.el b/contrib/slime-autodoc.el
index 2d727993f8..e8b553a810 100644
--- a/contrib/slime-autodoc.el
+++ b/contrib/slime-autodoc.el
@@ -35,7 +35,7 @@
(let ((arglist (slime-retrieve-arglist name)))
(if (eq arglist :not-available)
(error "Arglist not available")
- (message "%s" (slime-autodoc--fontify arglist)))))
+ (message "%s" (slime-autodoc--fontify arglist)))))
;; used also in slime-c-p-c.el.
(defun slime-retrieve-arglist (name)
@@ -45,7 +45,7 @@
(car (slime-eval `(swank:autodoc '(,name ,slime-cursor-marker))))))
(defun slime-autodoc-manually ()
- "Like autodoc informtion forcing multiline display."
+ "Like autodoc information forcing multiline display."
(interactive)
(let ((doc (slime-autodoc t)))
(cond (doc (eldoc-message doc))