From 3021dcd85764b6a918e1689bf649c16918c339da Mon Sep 17 00:00:00 2001 From: Yuan Fu Date: Thu, 17 Nov 2022 14:16:00 -0800 Subject: [PATCH] Fix #53: Update docstrings * eldoc-box.el (eldoc-box-body) (eldoc-box-quit-frame) (eldoc-box--buffer): Stop mentioning eglot. --- eldoc-box.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eldoc-box.el b/eldoc-box.el index af93682..4c7d29d 100644 --- a/eldoc-box.el +++ b/eldoc-box.el @@ -52,7 +52,7 @@ "The border color used in childframe.") (defface eldoc-box-body '((t . (:background nil))) - "Body face used in eglot doc childframe.") + "Body face used in documentation childframe.") (defcustom eldoc-box-only-multi-line nil "If non-nil, only use childframe when there are more than one line." @@ -154,7 +154,7 @@ See `eldoc-box-inhibit-display-when-moving'." "The frame to display doc.") (defun eldoc-box-quit-frame () - "Hide childframe used by eglot doc." + "Hide documentation childframe." (interactive) (when (and eldoc-box--frame (frame-live-p eldoc-box--frame)) (make-frame-invisible eldoc-box--frame t))) @@ -207,7 +207,7 @@ If (point) != last point, cleanup frame.") ;;;; Backstage ;;;;; Variable (defvar eldoc-box--buffer " *eldoc-box*" - "The buffer used to display eglot doc.") + "The buffer used to display documentation.") ;;;;; Function