summary refs log tree commit diff
diff options
context:
space:
mode:
-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