diff options
author | Florian Pelz <pelzflorian@pelzflorian.de> | 2022-03-13 12:26:47 +0100 |
---|---|---|
committer | Florian Pelz <pelzflorian@pelzflorian.de> | 2022-03-13 14:38:20 +0100 |
commit | 101ba6490437334b65bed8d5f879ef8946847b2d (patch) | |
tree | b81d1d56798577464dbf94ebe6dfb0fe0de07e0a | |
parent | 178ca9ef136dd9a575c1fc20a701f84cf25b927b (diff) |
doc: Fix inappropriate escapes.
* doc/guix.texi (Shells Home Services): Change \" to ".
-rw-r--r-- | doc/guix.texi | 4 |
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) |