guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: website: packaging-tutorial: Fix URLs of the Guil


From: Ludovic Courtès
Subject: branch master updated: website: packaging-tutorial: Fix URLs of the Guile manual.
Date: Sat, 15 Feb 2020 11:35:13 -0500

This is an automated email from the git hooks/post-receive script.

civodul pushed a commit to branch master
in repository guix-artwork.

The following commit(s) were added to refs/heads/master by this push:
     new f7e86fd  website: packaging-tutorial: Fix URLs of the Guile manual.
f7e86fd is described below

commit f7e86fdbca21e6d7e4e2a5cee4892b4b4956bd95
Author: Ludovic Courtès <address@hidden>
AuthorDate: Sat Feb 15 17:34:03 2020 +0100

    website: packaging-tutorial: Fix URLs of the Guile manual.
    
    Fixes <https://bugs.gnu.org/39421>.
    Reported by <address@hidden>.
    
    * website/posts/packaging-tutorial.md: Remove "/en" from Guile manual URLs.
---
 website/posts/packaging-tutorial.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/website/posts/packaging-tutorial.md 
b/website/posts/packaging-tutorial.md
index 8866182..9133602 100644
--- a/website/posts/packaging-tutorial.md
+++ b/website/posts/packaging-tutorial.md
@@ -221,7 +221,7 @@ Alternatively you can also run `guix environment --ad-hoc 
guile -- guile` if
 you'd rather not have Guile installed in your user profile.
 
 In the following examples we use the `>` symbol to denote the REPL prompt, that
-is, the line reserved for user input.  See [the Guile 
manual](https://www.gnu.org/software/guile/manual/en/html_node/Using-Guile-Interactively.html)
 for more details on
+is, the line reserved for user input.  See [the Guile 
manual](https://www.gnu.org/software/guile/manual/html_node/Using-Guile-Interactively.html)
 for more details on
 the REPL.
 
 -   Scheme syntax boils down to a tree of expressions (or *s-expression* in 
Lisp
@@ -331,7 +331,7 @@ the REPL.
     ```
 
 -   The keyword syntax is `#:`, it is used to create unique identifiers.  See 
also
-    the [Keywords section in the Guile 
manual](https://www.gnu.org/software/guile/manual/en/html_node/Keywords.html).
+    the [Keywords section in the Guile 
manual](https://www.gnu.org/software/guile/manual/html_node/Keywords.html).
 
 -   The percentage `%` is typically used for read-only global variables in the
     build stage.  Note that it is merely a convention, like `_` in C.  Scheme 
Lisp
@@ -901,7 +901,7 @@ When customizing `phases`, we often need to write code that 
mimics the
 equivalent system invocations (`make`, `mkdir`, `cp`, etc.) commonly used 
during
 regular "Unix-style" installations.
 
-Some like `chmod` are native to Guile.  See the [Guile reference 
manual](https://www.gnu.org/software/guile/manual/guile.html) for a
+Some like `chmod` are native to Guile.  See the [Guile reference 
manual](https://www.gnu.org/software/guile/manual/html_node) for a
 complete list.
 
 Guix provides additional helper functions which prove especially handy in the
@@ -929,7 +929,7 @@ of the traditional Unix system commands:
 
 The license in our last example needs a prefix: this is because of how the
 `license` module was imported in the package, as `#:use-module ((guix licenses)
-#:prefix license:)`.  The [Guile module import 
mechanism](https://www.gnu.org/software/guile/manual/en/html_node/Using-Guile-Modules.html)
 gives the user full
+#:prefix license:)`.  The [Guile module import 
mechanism](https://www.gnu.org/software/guile/manual/html_node/Using-Guile-Modules.html)
 gives the user full
 control over namespacing: this is needed to avoid clashes between, say, the
 `zlib` variable from `licenses.scm` (a *license* value) and the `zlib` variable
 from `compression.scm` (a *package* value).



reply via email to

[Prev in Thread] Current Thread [Next in Thread]