From dd90b4ece46e98a4f018fcedb045c7ff6c2ea979 Mon Sep 17 00:00:00 2001 From: axel Date: Fri, 19 Jan 2007 03:00:34 +1000 Subject: [PATCH] Fix incorrect use of the term 'alias' where 'function' was meant in documentation darcs-hash:20070118170034-ac50b-f10d79a1aed0e91d350db13187965bf2f5c45b7e.gz --- doc_src/builtin.txt | 2 +- doc_src/command.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc_src/builtin.txt b/doc_src/builtin.txt index 70d202ac1..a077a1bf1 100644 --- a/doc_src/builtin.txt +++ b/doc_src/builtin.txt @@ -7,7 +7,7 @@ - -n or --names List the names of all defined builtins -Prefixing a command with the word 'builtin' forces fish to ignore any aliases with the same name. +Prefixing a command with the word 'builtin' forces fish to ignore any functions with the same name. \subsection builtin-example Example diff --git a/doc_src/command.txt b/doc_src/command.txt index 369586de7..885cca5f3 100644 --- a/doc_src/command.txt +++ b/doc_src/command.txt @@ -4,11 +4,11 @@ command COMMANDNAME [OPTIONS...] \subsection command-description Description -prefixing a command with the word 'command' forces fish to ignore any aliases or builtins with the same name. +prefixing a command with the word 'command' forces fish to ignore any functions or builtins with the same name. \subsection command-example Example command ls -causes fish to execute the ls program, even if there exists a 'ls' alias. +causes fish to execute the ls program, even if there exists a 'ls' function.