diff --git a/screens/dashboard.el b/screens/dashboard.el index f53892d..45132e5 100644 --- a/screens/dashboard.el +++ b/screens/dashboard.el @@ -87,7 +87,7 @@ "No connection to weather service :("))) (defun default-dash () - "Returns the default dashboard." + "Return the default dashboard." `(:content ,(concat enlight-calendar "\n\n" (grid-make-row @@ -128,7 +128,7 @@ )) (defun android-dash () - "Returns the android dashboard." + "Return the android dashboard." `(:content ,(concat (grid-make-row (list (grid-make-column (grid-make-box `(:content ,(concat @@ -171,7 +171,7 @@ "Gets the dashboard content for the current platform." (cond ((equal system-type 'android) (android-dash)) - (else (default-dash)))) + (t (default-dash)))) ;; Dashboard screen using enlight