From d3a2f729c90661f64e7eb45e93e7c498bcce328e Mon Sep 17 00:00:00 2001 From: Adam Kruszewski Date: Tue, 4 Jul 2023 16:04:28 +0200 Subject: [PATCH] Fix wording in a comment --- corfu-candidate-overlay.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/corfu-candidate-overlay.el b/corfu-candidate-overlay.el index e0f4dd8..242ccd5 100644 --- a/corfu-candidate-overlay.el +++ b/corfu-candidate-overlay.el @@ -276,7 +276,7 @@ the end of word." is-delete-command) ;; check whether we are at word boundardy. (corfu-candidate-overlay-at-word-boundary-p)) - ;; ...when main compound conditions is true clause... + ;; ...when main/top-level compound if condition is true clause... (progn ;; When the completion backend is SLOW, i.e. like every LSP client, ;; then the overlay will often not update and will interfere with the typing. @@ -330,7 +330,7 @@ the end of word." ;; we did the shuffling above. (setq corfu-candidate-overlay--last-point (point)) (corfu-candidate-overlay--show)) - ;; ...when main compound conditions is false clause... + ;; ...when main/top-level compound if condition is false clause... ;; so hide the overlay if the conditions to show the overlay where not met. (corfu-candidate-overlay--hide)))))