[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: website: ssh-agent: Fix some more typos.
From: |
Chris Marusich |
Subject: |
01/01: website: ssh-agent: Fix some more typos. |
Date: |
Tue, 12 Jun 2018 23:38:35 -0400 (EDT) |
marusich pushed a commit to branch master
in repository guix-artwork.
commit f97f9c0cb18637f1afe88a1322650b99a0a903f6
Author: Chris Marusich <address@hidden>
Date: Tue Jun 12 20:33:17 2018 -0700
website: ssh-agent: Fix some more typos.
* website/posts/use-stock-ssh-agent-everywhere.md: Fix some typos.
---
website/posts/use-stock-ssh-agent-everywhere.md | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/website/posts/use-stock-ssh-agent-everywhere.md
b/website/posts/use-stock-ssh-agent-everywhere.md
index 436ea64..51b8e36 100644
--- a/website/posts/use-stock-ssh-agent-everywhere.md
+++ b/website/posts/use-stock-ssh-agent-everywhere.md
@@ -229,10 +229,10 @@
https://www.gnu.org/software/guix/manual/html_node/Services.html). To
make GNOME use our custom GNOME Keyring package, we must somehow
customize the `gnome-desktop-service` ([defined in the file
gnu/services/desktop.scm](https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/services/desktop.scm?id=263c9941a1e523b360ca9f42d1ed6b11e6e6e285#n795))
-to use our custom package. How do we do customize a service?
-Generally, the answer depends on the service. Thankfully, many of
-GuixSD's services, including the `gnome-desktop-service`, follow a
-similar pattern. In this case, we "just" need to pass a custom
+to use our custom package. How do we customize a service? Generally,
+the answer depends on the service. Thankfully, many of GuixSD's
+services, including the `gnome-desktop-service`, follow a similar
+pattern. In this case, we "just" need to pass a custom
`<gnome-desktop-configuration>` record to the `gnome-desktop-service`
procedure in our operating system declaration, like this:
@@ -249,7 +249,7 @@ procedure in our operating system declaration, like this:
Here, the `cons*` procedure just adds the GNOME desktop service to the
`%desktop-services` list, returning the new list. For details, please
-refer to the [the Guile
+refer to [the Guile
manual](https://www.gnu.org/software/guile/manual/html_node/List-Constructors.html#index-cons_002a).
Now the question is: what should `my-gnome-desktop-configuration` be?