aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src
diff options
context:
space:
mode:
authorGravatar Fabian Homborg <FHomborg@gmail.com>2015-09-15 16:05:23 +0200
committerGravatar Fabian Homborg <FHomborg@gmail.com>2015-09-15 16:05:23 +0200
commit31c75e747cdf59e3077c2eca8a5f6b810a2d5f74 (patch)
tree94f519b07ebfc6050ab2e0bb938d67996789fbd8 /doc_src
parent7fe8a63f532670bcdb1509808ba2ac5ed82b75ba (diff)
parent8a1a446f455f892a3c9e48887917dcf7b18e9ce0 (diff)
Merge pull request #2388 from alco/patch-1
Fix a typo in docs/index
Diffstat (limited to 'doc_src')
-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 f40b4df4..6db7bd52 100644
--- a/doc_src/index.hdr.in
+++ b/doc_src/index.hdr.in
@@ -236,7 +236,7 @@ There are a few important things that need to be noted about aliases:
- Always take care to add the `$argv` variable to the list of parameters to the wrapped command. This makes sure that if the user specifies any additional parameters to the function, they are passed on to the underlying command.
-- If the alias has the same name as the aliased command, it is necessary to refix the call to the program with `command` in order to tell fish that the function should not call itself, but rather a command with the same name. Failing to do so will cause infinite recursion bugs.
+- If the alias has the same name as the aliased command, it is necessary to prefix the call to the program with `command` in order to tell fish that the function should not call itself, but rather a command with the same name. Failing to do so will cause infinite recursion bugs.
To easily create a function of this form, you can use the <a href="commands.html#alias">alias</a> command.