From 08988180c34f132aa20ff470256226f908fe5b30 Mon Sep 17 00:00:00 2001 From: Therry van Neerven Date: Thu, 6 Dec 2018 21:48:16 +0100 Subject: [PATCH] Fixed typo: restarut --> restart --- README.md | 2 +- lisp/init-funcs.el | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 87a2566da..8c964a9b0 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ M-x centaur-update-dotfiles # Update packages only (then restart) M-x centaur-update-packages -M-x centaur-update-packages-and-restarut +M-x centaur-update-packages-and-restart # Update all including configurations, packages and dotfiles M-x centuar-update-all diff --git a/lisp/init-funcs.el b/lisp/init-funcs.el index c05d2df34..c16680d0b 100644 --- a/lisp/init-funcs.el +++ b/lisp/init-funcs.el @@ -101,14 +101,14 @@ (centaur-update-dotfiles)) (declare-function upgrade-packages-and-restart 'init-package) -(defalias 'centaur-update-packages-and-restarut 'upgrade-packages-and-restart) +(defalias 'centaur-update-packages-and-restart 'upgrade-packages-and-restart) (defun centaur-update-and-restart () "Update configurations and packages, then restart." (interactive) (centaur-update-config) (centaur-update-org) (centaur-update-dotfiles) - (centaur-update-packages-and-restarut nil)) + (centaur-update-packages-and-restart nil)) (defun centaur-update-dotfiles () "Update the dotfiles to the latest version."