guix-commits
[Top][All Lists]
Advanced

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

01/01: doc: Fix typos.


From: Eric Bavier
Subject: 01/01: doc: Fix typos.
Date: Fri, 31 Mar 2017 22:13:22 -0400 (EDT)

bavier pushed a commit to branch master
in repository guix.

commit 9fc221b58cecd73e22cac01cb0918a774a4a7b2f
Author: Eric Bavier <address@hidden>
Date:   Fri Mar 31 20:36:26 2017 -0500

    doc: Fix typos.
    
    * doc/guix.texi (Build Systems)[ocaml-build-system]: Fix typo.
    (Log Rotation)[periodic-rotations]: ditto.
    (Database Services)[redis-service-type]: ditto.
    (OpenSMTPD Service)[opensmtpd-configuration]: ditto.
    (VPN Services)[OpenVPN]: ditto.
    (Power management Services)[tlp-configuration]: ditto.
    (Git daemon service)[git-daemon-service]: ditto.
    (Running GuixSD in a VM): ditto.
    * gnu/services/pm.scm (tlp-configuration)[runtime-pm-blacklist]: Fix typo.
    * gnu/services/vpn.scm (openvpn-client-configuration)[status]: ditto.
---
 doc/guix.texi        | 20 ++++++++++----------
 gnu/services/pm.scm  |  2 +-
 gnu/services/vpn.scm |  4 ++--
 3 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/doc/guix.texi b/doc/guix.texi
index ae5f04b..40c2fe0 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -3426,7 +3426,7 @@ Both phases are executed after the @code{install} phase.
 @end defvr
 
 @defvr {Scheme Variable} ocaml-build-system
-This variable is exported by @code{(guix build-sytem ocaml)}.  It implements
+This variable is exported by @code{(guix build-system ocaml)}.  It implements
 a build procedure for @uref{https://ocaml.org, OCaml} packages, which consists
 of choosing the correct set of commands to run for each package.  OCaml
 packages can expect many different commands to be run.  This build system will
@@ -9224,7 +9224,7 @@ The Rottlog package to use.
 The Rottlog configuration file to use (@pxref{Mandatory RC Variables,,,
 rottlog, GNU Rot[t]log Manual}).
 
address@hidden @code{periodic-rotations} (default: @code{`(("weekly" 
%default-rotatations))})
address@hidden @code{periodic-rotations} (default: @code{`(("weekly" 
%default-rotations))})
 A list of Rottlog period-name/period-config tuples.
 
 For example, taking an example from the Rottlog manual (@pxref{Period
@@ -11129,7 +11129,7 @@ Network interface on which to listen.
 
 @item @code{port} (default: @code{6379})
 Port on which to accept connections on, a value of 0 will disable
-listining on a TCP socket.
+listening on a TCP socket.
 
 @item @code{working-directory} (default: @code{"/var/lib/redis"})
 Directory in which to store the database and related files.
@@ -12519,7 +12519,7 @@ as in this example:
 @end deffn
 
 @deftp {Data Type} opensmtpd-configuration
-Data type regresenting the configuration of opensmtpd.
+Data type representing the configuration of opensmtpd.
 
 @table @asis
 @item @code{package} (default: @var{opensmtpd})
@@ -13473,7 +13473,7 @@ Defaults to @samp{#f}.
 @end deftypevr
 
 @deftypevr address@hidden parameter} boolean client-to-client?
-When true, clients are alowed to talk to each other inside the VPN.
+When true, clients are allowed to talk to each other inside the VPN.
 
 Defaults to @samp{#f}.
 
@@ -13497,7 +13497,7 @@ Defaults to @samp{100}.
 
 @deftypevr address@hidden parameter} string status
 The status file.  This file shows a small report on current connection.
-It is trunkated and rewritten every minute.
+It is truncated and rewritten every minute.
 
 Defaults to @samp{"/var/run/openvpn/status"}.
 
@@ -14251,7 +14251,7 @@ Defaults to @samp{#t}.
 @end deftypevr
 
 @deftypevr address@hidden parameter} maybe-space-separated-string-list 
runtime-pm-blacklist
-Exclude specified PCI(e) devices adresses from Runtime Power Management.
+Exclude specified PCI(e) device addresses from Runtime Power Management.
 
 Defaults to @samp{disabled}.
 
@@ -14418,7 +14418,7 @@ List of strings or gexps representing the arguments for 
the database
 
 @defvr {Scheme Variable} %dicod-database:gcide
 A @code{<dicod-database>} object serving the GNU Collaborative International
-Dictonary of English using the @code{gcide} package.
+Dictionary of English using the @code{gcide} package.
 @end defvr
 
 The following is an example @code{dicod-service} configuration.
@@ -14448,7 +14448,7 @@ The @code{(gnu services version-control)} module 
provides the following services
 @deffn {Scheme Procedure} git-daemon-service [#:config 
(git-daemon-configuration)]
 
 Return a service that runs @command{git daemon}, a simple TCP server to
-expose repositiories over the Git protocol for annoymous access.
+expose repositories over the Git protocol for anonymous access.
 
 The optional @var{config} argument should be a
 @code{<git-daemon-configuration>} object, by default it allows read-only
@@ -15357,7 +15357,7 @@ which may be insufficient for some operations.
 The file name of the qcow2 image.
 @end table
 
-The default @command{run-vm.sh} script that is returned by an invokation of
+The default @command{run-vm.sh} script that is returned by an invocation of
 @command{guix system vm} does not add a @command{-net user} flag by default.
 To get network access from within the vm add the @code{(dhcp-client-service)}
 to your system definition and start the VM using
diff --git a/gnu/services/pm.scm b/gnu/services/pm.scm
index ec35e57..fe55647 100644
--- a/gnu/services/pm.scm
+++ b/gnu/services/pm.scm
@@ -327,7 +327,7 @@ blacklisted ones.")
 
   (runtime-pm-blacklist
    (maybe-space-separated-string-list 'disabled)
-   "Exclude specified PCI(e) devices adresses from Runtime Power Management.")
+   "Exclude specified PCI(e) device addresses from Runtime Power Management.")
 
   (runtime-pm-driver-blacklist
    (space-separated-string-list '("radeon" "nouveau"))
diff --git a/gnu/services/vpn.scm b/gnu/services/vpn.scm
index e1a04a9..868a227 100644
--- a/gnu/services/vpn.scm
+++ b/gnu/services/vpn.scm
@@ -352,7 +352,7 @@ channel to protect against DoS attacks.")
 
    (client-to-client?
     (boolean #f)
-    "When true, clients are alowed to talk to each other inside the VPN.")
+    "When true, clients are allowed to talk to each other inside the VPN.")
 
    (keepalive
     (keepalive '(10 120))
@@ -368,7 +368,7 @@ element is the timeout before considering the other side 
down.")
    (status
     (string "/var/run/openvpn/status")
     "The status file. This file shows a small report on current connection. It
-is trunkated and rewritten every minute.")
+is truncated and rewritten every minute.")
 
    (client-config-dir
     (openvpn-ccd-list '())



reply via email to

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