aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src
diff options
context:
space:
mode:
authorGravatar David Adam (zanchey) <zanchey@ucc.gu.uwa.edu.au>2013-05-10 20:29:38 +0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-05-13 01:48:20 -0700
commitdd6bb04ba7de2e8f7607935c8a370c0b726d4c2a (patch)
tree8d6b46ab1413248bed7e556bd02aea5824c78c9f /doc_src
parentc80bd104d23513cc26f29fe44fae55e2f8d6cc50 (diff)
documentation typos
Diffstat (limited to 'doc_src')
-rw-r--r--doc_src/faq.hdr8
-rw-r--r--doc_src/index.hdr.in8
2 files changed, 8 insertions, 8 deletions
diff --git a/doc_src/faq.hdr b/doc_src/faq.hdr
index 23bfa00d..07c763ab 100644
--- a/doc_src/faq.hdr
+++ b/doc_src/faq.hdr
@@ -28,7 +28,7 @@ Writing <code>cd images; ls ..</code> given the above directory
structure would list the contents of ~/Documents, not of ~, even
though using <code>cd ..</code> changes the current directory to ~,
and the prompt, the pwd builtin and many other directory information
-sources suggest that the current directory is ~/images and it's
+sources suggest that the current directory is ~/images and its
parent is ~. This issue is not possible to fix without either making
every single command into a builtin, breaking Unix semantics or
implementing kludges in every single command.
@@ -91,10 +91,10 @@ In order to change your default shell, type:
<code>chsh -s /usr/local/bin/fish</code>
-You may need to adjust the above path to e.g. /usr/bin/fish. Use the command <code>which fish</code> if you are unsure of where fish is installed.
+You may need to adjust the above path to e.g. \c /usr/bin/fish. Use the command <code>which fish</code> if you are unsure of where fish is installed.
-Unfortunately, there is no way to make the changes take effect at once,
-you will need to log out and back in again.
+Unfortunately, there is no way to make the changes take effect at once.
+You will need to log out and back in again.
<hr>
diff --git a/doc_src/index.hdr.in b/doc_src/index.hdr.in
index 6705aa41..62bde6b2 100644
--- a/doc_src/index.hdr.in
+++ b/doc_src/index.hdr.in
@@ -163,7 +163,7 @@ Any file descriptor can be directed to a different output than its
default through a simple mechanism called a redirection.
An example of a file redirection is <code> echo hello \>output.txt</code>,
-which directs the output of the echo command to the file error.txt.
+which directs the output of the echo command to the file output.txt.
- To redirect standard input, write <code>\<SOURCE_FILE</code>
- To redirect standard output, write <code>\>DESTINATION</code>
@@ -398,7 +398,7 @@ These are the general purpose tab completions that \c fish provides:
- Completion of environment variable names.
- Completion of usernames for tilde expansion.
- Completion of filenames, even on strings with wildcards such as '*', '**' and '?'.
-- Completion of job id, job name and process names for <a href="#expand-process">process expansion</a>.
+- Completion of job ID, job name and process names for <a href="#expand-process">process expansion</a>.
\c fish provides a large number of program specific completions. Most
of these completions are simple options like the \c -l option for \c
@@ -1186,7 +1186,7 @@ History searches can be aborted by pressing the escape key.
Prefixing the commandline with a space will prevent the entire line
from being stored in the history.
-The history is stored in the file <code~/.config/fish/fish_history</code>.
+The history is stored in the file <code>~/.config/fish/fish_history</code>.
Examples:
@@ -1221,7 +1221,7 @@ continue using the shell. In such cases, there are several ways in
which the user can change <code>fish</code>'s behavior.
-# By ending a command with the \& (ampersand) symbol, the user tells \c fish to put the specified command into the background. A background process will be run simultaneous with \c fish. \c fish will retain control of the terminal, so the program will not be able to read from the keyboard.
--# By pressing ^Z, the user stops a currently running foreground program and returns control to \c fish. Some programs do not support this feature, or remap it to another key. Gnu emacs uses ^X z to stop running.
+-# By pressing ^Z, the user stops a currently running foreground program and returns control to \c fish. Some programs do not support this feature, or remap it to another key. GNU Emacs uses ^X z to stop running.
-# By using the <a href="commands.html#fg">fg</a> and <a href="commands.html#bg">bg</a> builtin commands, the user can send any currently running job into the foreground or background.
\section initialization Initialization files