Skip to content

Commit 6411235

Browse files
authored
Fix typo in error message for package lookup (#2974)
1 parent d3815eb commit 6411235

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

methods/el-get-elpa.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ ALIST-ELEM should be an element from `package-alist' or
5757
(let* ((descs (cdr (assq pkg package-archive-contents))))
5858
(cond
5959
((consp descs) (car descs))
60-
((null descs) (error "Couln't find package `%s'" pkg))
60+
((null descs) (error "Couldn't find package `%s'" pkg))
6161
(t pkg))))
6262

6363
(defun el-get-elpa-package-archive-base (pkg)

0 commit comments

Comments
 (0)