Spelling mistake.

This commit is contained in:
Tom Alexander 2023-08-18 17:47:17 -04:00
parent 623ae1f55f
commit 51fb2ce364
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -4,8 +4,8 @@
(defun locate-rust-analyzer ()
"Find rust-analyzer."
(let ((rust-analyzer-paths (list (locate-rust-analyzer-rustup) (locate-rust-analyzer-ansible-built))))
(let ((first-non-nill-path (seq-find (lambda (elt) elt) rust-analyzer-paths)))
first-non-nill-path
(let ((first-non-nil-path (seq-find (lambda (elt) elt) rust-analyzer-paths)))
first-non-nil-path
)
)
)