doc: Fix syntax of '.guix-channel' dependency example.
authorLudovic Courtès <ludo@gnu.org>
Sat, 20 Mar 2021 17:02:50 +0000 (18:02 +0100)
committerLudovic Courtès <ludo@gnu.org>
Sat, 20 Mar 2021 21:29:13 +0000 (22:29 +0100)
Reported by ison <ison@airmail.cc>.

* doc/guix.texi (Declaring Channel Dependencies): Remove quote in
'dependencies' example.

doc/guix.texi

index 386169b..25aea61 100644 (file)
@@ -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