summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2016-02-13 20:07:08 +0100
committerAndreas Enge <andreas@enge.fr>2016-02-16 16:37:37 +0100
commitc2c5dc79f13073e342d8b1a8e8543a2fb5b72bc8 (patch)
tree64d1d79131d4d1d2db886abff7fb56613707f3c7 /doc
parent4d4c481601db228a80344a77223b063635ffe533 (diff)
downloadguix-patches-c2c5dc79f13073e342d8b1a8e8543a2fb5b72bc8.tar
guix-patches-c2c5dc79f13073e342d8b1a8e8543a2fb5b72bc8.tar.gz
doc: Use modify-phases syntax in example.
* doc/guix.texi ("build systems"): Use modify-phases syntax instead of alist-delete in example.
Diffstat (limited to 'doc')
-rw-r--r--doc/guix.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi
index 0ff5cfc523..42b3fbad21 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -2651,7 +2651,7 @@ The list of phases used for a particular package can be changed with the
@code{#:phases} parameter. For instance, passing:
@example
-#:phases (alist-delete 'configure %standard-phases)
+#:phases (modify-phases %standard-phases (delete 'configure))
@end example
means that all the phases described above will be used, except the