Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extra parenthesis problem in a code snippet on how to Automate Package Updates #84

Open
pdelfino opened this issue May 31, 2022 · 0 comments

Comments

@pdelfino
Copy link

Hi David,

I really like your content! Keep shipping :)

Since I am poor, I can't sponsor you yet. Hopefully, I will be able to help in the future. Until that day, I think I can give a small contribution.

The code on this file about Emacs from Scratch on the section Automatic Package Updates seems to have a small mistake.

There is an extra parenthesis:

(use-package auto-package-update
  :custom
  (auto-package-update-interval 7)
  (auto-package-update-prompt-before-update t)
  (auto-package-update-hide-results t)
  :config
  (auto-package-update-maybe))
  (auto-package-update-at-time "09:00")     )

I suppose your intention was:

(use-package auto-package-update
 :custom
 (auto-package-update-interval 7)
 (auto-package-update-prompt-before-update t)
 (auto-package-update-hide-results t)
 :config
 (auto-package-update-maybe))
(auto-package-update-at-time "09:00")
@pdelfino pdelfino changed the title Extra parenthesis problem Extra parenthesis problem in a code snippet on how to Automate Package Updates May 31, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant