aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src
diff options
context:
space:
mode:
authorGravatar Alexei Sholik <alcosholik@gmail.com>2015-09-15 16:49:14 +0300
committerGravatar Alexei Sholik <alcosholik@gmail.com>2015-09-15 16:49:14 +0300
commit8a1a446f455f892a3c9e48887917dcf7b18e9ce0 (patch)
tree94f519b07ebfc6050ab2e0bb938d67996789fbd8 /doc_src
parent7fe8a63f532670bcdb1509808ba2ac5ed82b75ba (diff)
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.