aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2014-07-18 10:41:47 -0400
committerMark H Weaver <mhw@netris.org>2014-07-18 10:41:47 -0400
commit1c00f83650d9412f140cce6766753a611330d6f1 (patch)
treea68adffe74c67df3bfdfd27910fae57e40fff4d8 /doc
parent0e534e74aa68cea63302db19e7e39a72d0280b3d (diff)
downloadguix-1c00f83650d9412f140cce6766753a611330d6f1.tar
guix-1c00f83650d9412f140cce6766753a611330d6f1.tar.gz
Fix typos in manual.
* doc/guix.texi (Using the Configuration System): 'gid' -> 'group' in user-account example. (Initial RAM Disk): 'base-init' -> 'base-initrd'.
Diffstat (limited to 'doc')
-rw-r--r--doc/guix.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/guix.texi b/doc/guix.texi
index c7a7e8b55e..5bee540460 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -2881,7 +2881,7 @@ kernel, initial RAM disk, and boot loader looks like this:
(users (list (user-account
(name "alice")
(password "")
- (uid 1000) (gid 100)
+ (uid 1000) (group 100)
(comment "Bob's sister")
(home-directory "/home/alice"))))
(packages (cons emacs %base-packages))
@@ -3331,7 +3331,7 @@ at boot time, you can define the @code{initrd} field of the operating
system declaration like this:
@example
-(initrd (cut base-init <>
+(initrd (cut base-initrd <>
#:extra-modules '("my.ko" "modules.ko")))
@end example