summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorFlorian Pelz <pelzflorian@pelzflorian.de>2022-03-13 12:26:47 +0100
committerFlorian Pelz <pelzflorian@pelzflorian.de>2022-03-13 14:38:20 +0100
commit101ba6490437334b65bed8d5f879ef8946847b2d (patch)
treeb81d1d56798577464dbf94ebe6dfb0fe0de07e0a /doc
parent178ca9ef136dd9a575c1fc20a701f84cf25b927b (diff)
downloadguix-101ba6490437334b65bed8d5f879ef8946847b2d.tar.gz
doc: Fix inappropriate escapes.
* doc/guix.texi (Shells Home Services): Change \" to ".
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 4b71fb7010..dbe281ead7 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -38364,13 +38364,13 @@ put in the @file{.bashrc} file.  The alias will automatically be quoted,
 so something line this:
 
 @lisp
-'((\"ls\" . \"ls -alF\"))
+'(("ls" . "ls -alF"))
 @end lisp
 
 turns into
 
 @example
-alias ls=\"ls -alF\"
+alias ls="ls -alF"
 @end example
 
 @item @code{bash-profile} (default: @code{()}) (type: text-config)