summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2016-08-03 15:39:56 +0200
committerLudovic Courtès <ludo@gnu.org>2016-08-03 16:00:20 +0200
commit80d944b79a795af325cd4b6d6734b60c5903ecdf (patch)
treea53ae7929745ce2470518b35e423ee16e0d32b7d
parent1eb43cc30b78436414e3ca55ba44c70c27bf21aa (diff)
doc: Fix typos.version-0.11.0
* doc/guix.texi (Application Setup): Use @xref, not @pxref, when starting a sentence. (Scheduled Job Execution): Remove extra indent in example; fix typos.
-rw-r--r--doc/guix.texi10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/guix.texi b/doc/guix.texi
index 27f10ba8f31..df8b5a9241d 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -1241,7 +1241,7 @@ programs to authenticate Web servers accessed over HTTPS.
1241 1241
1242When using Guix on a foreign distro, you can install this package and 1242When using Guix on a foreign distro, you can install this package and
1243define the relevant environment variables so that packages know where to 1243define the relevant environment variables so that packages know where to
1244look for certificates. @pxref{X.509 Certificates}, for detailed 1244look for certificates. @xref{X.509 Certificates}, for detailed
1245information. 1245information.
1246 1246
1247@subsection Emacs Packages 1247@subsection Emacs Packages
@@ -7836,7 +7836,7 @@ gexps to introduce job definitions that are passed to mcron
7836 #~(job "5 0 * * *" ;Vixie cron syntax 7836 #~(job "5 0 * * *" ;Vixie cron syntax
7837 "guix gc -F 1G")) 7837 "guix gc -F 1G"))
7838 7838
7839(define idutils-jobs 7839(define idutils-job
7840 ;; Update the index database as user "charlie" at 12:15PM 7840 ;; Update the index database as user "charlie" at 12:15PM
7841 ;; and 19:15PM. This runs from the user's home directory. 7841 ;; and 19:15PM. This runs from the user's home directory.
7842 #~(job '(next-minute-from (next-hour '(12 19)) '(15)) 7842 #~(job '(next-minute-from (next-hour '(12 19)) '(15))
@@ -7861,8 +7861,8 @@ list of gexps denoting mcron job specifications.
7861 7861
7862This is a shorthand for: 7862This is a shorthand for:
7863@example 7863@example
7864 (service mcron-service-type 7864(service mcron-service-type
7865 (mcron-configuration (mcron mcron) (jobs jobs))) 7865 (mcron-configuration (mcron mcron) (jobs jobs)))
7866@end example 7866@end example
7867@end deffn 7867@end deffn
7868 7868
@@ -7872,7 +7872,7 @@ This is the type of the @code{mcron} service, whose value is an
7872 7872
7873This service type can be the target of a service extension that provides 7873This service type can be the target of a service extension that provides
7874it additional job specifications (@pxref{Service Composition}). In 7874it additional job specifications (@pxref{Service Composition}). In
7875other words, it is possible to define services that provide addition 7875other words, it is possible to define services that provide additional
7876mcron jobs to run. 7876mcron jobs to run.
7877@end defvr 7877@end defvr
7878 7878