doc: Fix inappropriate escapes.
* doc/guix.texi (Shells Home Services): Change \" to ".master
parent
178ca9ef13
commit
101ba64904
|
@ -38364,13 +38364,13 @@ put in the @file{.bashrc} file. The alias will automatically be quoted,
|
||||||
so something line this:
|
so something line this:
|
||||||
|
|
||||||
@lisp
|
@lisp
|
||||||
'((\"ls\" . \"ls -alF\"))
|
'(("ls" . "ls -alF"))
|
||||||
@end lisp
|
@end lisp
|
||||||
|
|
||||||
turns into
|
turns into
|
||||||
|
|
||||||
@example
|
@example
|
||||||
alias ls=\"ls -alF\"
|
alias ls="ls -alF"
|
||||||
@end example
|
@end example
|
||||||
|
|
||||||
@item @code{bash-profile} (default: @code{()}) (type: text-config)
|
@item @code{bash-profile} (default: @code{()}) (type: text-config)
|
||||||
|
|
Reference in New Issue