diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-03-20 18:02:50 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-03-20 22:29:13 +0100 |
commit | 52e64b21be50e2c5febd7bf1accd88ffdc05a4bb (patch) | |
tree | ae524f7c58b1d9922b199d49b8d7bbc8b66977d5 /doc | |
parent | 25db3b2f8bb4a18e9405d2cd32aa899e0007f236 (diff) |
doc: Fix syntax of '.guix-channel' dependency example.
Reported by ison <ison@airmail.cc>.
* doc/guix.texi (Declaring Channel Dependencies): Remove quote in
'dependencies' example.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 386169b2a5..25aea61492 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -5267,7 +5267,7 @@ The meta-data file should contain a simple S-expression like this: (version 0) (dependencies (channel - (name 'some-collection) + (name some-collection) (url "https://example.org/first-collection.git") ;; The 'introduction' bit below is optional: you would @@ -5278,7 +5278,7 @@ The meta-data file should contain a simple S-expression like this: (commit "a8883b58dc82e167c96506cf05095f37c2c2c6cd") (signer "CABB A931 C0FF EEC6 900D 0CFB 090B 1199 3D9A EBB5")))) (channel - (name 'some-other-collection) + (name some-other-collection) (url "https://example.org/second-collection.git") (branch "testing")))) @end lisp |