Skip to content

Commit 6cb81ac

Browse files
committed
Fixed docstring typo.
1 parent 53bf1f3 commit 6cb81ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ivy-file-preview.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676

7777
(defun ivy-file-preview--open-file (fn pos)
7878
"Open the file path (FN).
79-
POS can either be a integer or cons cell represent line number and columns."
79+
POS can either be an integer or cons cell represent line number and columns."
8080
(setq ivy-file-preview--selected-file fn)
8181
(find-file fn)
8282
(cond ((consp pos)
@@ -88,7 +88,7 @@ POS can either be a integer or cons cell represent line number and columns."
8888
(defun ivy-file-preview--do-preview (project-dir fn pos)
8989
"Do file preview execution.
9090
FN is the file path. PROJECT-DIR is the path of the project root directory.
91-
POS can either be a integer or cons cell represent line number and columns."
91+
POS can either be an integer or cons cell represent line number and columns."
9292
(save-selected-window
9393
(with-selected-window minibuffer-scroll-window
9494
(when project-dir (setq fn (f-join project-dir fn)))

0 commit comments

Comments
 (0)