aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src/index.hdr.in
diff options
context:
space:
mode:
authorGravatar Kunal Mehta <legoktm@gmail.com>2015-07-31 22:44:15 -0700
committerGravatar Fabian Homborg <FHomborg@gmail.com>2015-08-04 13:09:47 +0200
commit07c109fad854239499ac004d044f053e492df8d3 (patch)
tree6c3e6cd1575aa13ec286647cb427afb1174b27ef /doc_src/index.hdr.in
parente56f0628d50baabe075e0fe95fad9e05f048b0a6 (diff)
Fix raw &amp in docs
The missing semicolon caused a raw &amp to be rendered.
Diffstat (limited to 'doc_src/index.hdr.in')
-rw-r--r--doc_src/index.hdr.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc_src/index.hdr.in b/doc_src/index.hdr.in
index 55a26260..38328f02 100644
--- a/doc_src/index.hdr.in
+++ b/doc_src/index.hdr.in
@@ -1007,7 +1007,7 @@ The fish commandline editor works exactly the same in single line mode and in mu
Normally when `fish` starts a program, this program will be put in the foreground, meaning it will take control of the terminal and `fish` will be stopped until the program finishes. Sometimes this is not desirable. For example, you may wish to start an application with a graphical user interface from the terminal, and then be able to continue using the shell. In such cases, there are several ways in which the user can change fish's behavior.
--# By ending a command with the `&amp` (ampersand) symbol, the user tells `fish` to put the specified command into the background. A background process will be run simultaneous with `fish`. `fish` will retain control of the terminal, so the program will not be able to read from the keyboard.
+-# By ending a command with the `&amp;` (ampersand) symbol, the user tells `fish` to put the specified command into the background. A background process will be run simultaneous with `fish`. `fish` will retain control of the terminal, so the program will not be able to read from the keyboard.
-# By pressing @key{Control,Z}, the user stops a currently running foreground program and returns control to `fish`. Some programs do not support this feature, or remap it to another key. GNU Emacs uses @key{Control,X} @key{z} to stop running.