Skip to content

Commit d9a5b32

Browse files
cowboy-bebughlissner
authored andcommitted
docs: replace single -> double semicolons
1 parent 2a875d9 commit d9a5b32

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

templates/packages.example.el

+14-14
Original file line numberDiff line numberDiff line change
@@ -7,44 +7,44 @@
77

88

99
;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror:
10-
;(package! some-package)
10+
;; (package! some-package)
1111

1212
;; To install a package directly from a remote git repo, you must specify a
1313
;; `:recipe'. You'll find documentation on what `:recipe' accepts here:
1414
;; https://github.com/radian-software/straight.el#the-recipe-format
15-
;(package! another-package
16-
; :recipe (:host github :repo "username/repo"))
15+
;; (package! another-package
16+
;; :recipe (:host github :repo "username/repo"))
1717

1818
;; If the package you are trying to install does not contain a PACKAGENAME.el
1919
;; file, or is located in a subdirectory of the repo, you'll need to specify
2020
;; `:files' in the `:recipe':
21-
;(package! this-package
22-
; :recipe (:host github :repo "username/repo"
23-
; :files ("some-file.el" "src/lisp/*.el")))
21+
;; (package! this-package
22+
;; :recipe (:host github :repo "username/repo"
23+
;; :files ("some-file.el" "src/lisp/*.el")))
2424

2525
;; If you'd like to disable a package included with Doom, you can do so here
2626
;; with the `:disable' property:
27-
;(package! builtin-package :disable t)
27+
;; (package! builtin-package :disable t)
2828

2929
;; You can override the recipe of a built in package without having to specify
3030
;; all the properties for `:recipe'. These will inherit the rest of its recipe
3131
;; from Doom or MELPA/ELPA/Emacsmirror:
32-
;(package! builtin-package :recipe (:nonrecursive t))
33-
;(package! builtin-package-2 :recipe (:repo "myfork/package"))
32+
;; (package! builtin-package :recipe (:nonrecursive t))
33+
;; (package! builtin-package-2 :recipe (:repo "myfork/package"))
3434

3535
;; Specify a `:branch' to install a package from a particular branch or tag.
3636
;; This is required for some packages whose default branch isn't 'master' (which
3737
;; our package manager can't deal with; see radian-software/straight.el#279)
38-
;(package! builtin-package :recipe (:branch "develop"))
38+
;; (package! builtin-package :recipe (:branch "develop"))
3939

4040
;; Use `:pin' to specify a particular commit to install.
41-
;(package! builtin-package :pin "1a2b3c4d5e")
41+
;; (package! builtin-package :pin "1a2b3c4d5e")
4242

4343

4444
;; Doom's packages are pinned to a specific commit and updated from release to
4545
;; release. The `unpin!' macro allows you to unpin single packages...
46-
;(unpin! pinned-package)
46+
;; (unpin! pinned-package)
4747
;; ...or multiple packages
48-
;(unpin! pinned-package another-pinned-package)
48+
;; (unpin! pinned-package another-pinned-package)
4949
;; ...Or *all* packages (NOT RECOMMENDED; will likely break things)
50-
;(unpin! t)
50+
;; (unpin! t)

0 commit comments

Comments
 (0)