aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src/design.hdr
diff options
context:
space:
mode:
authorGravatar Dennis Ideler <ideler.dennis@gmail.com>2013-05-22 01:27:53 -0400
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-05-25 01:00:37 -0700
commit2eb97edf02e1c69ab4039399cfc5dac6916c452f (patch)
tree0c378bec7bd6c0f9fa1caef56614f3dff02f5668 /doc_src/design.hdr
parentcdfb5c2bd8505420d9cb2e06f96caadd41c8cd36 (diff)
Fix typo
Remove extra instance of "builtin commands", shouldn't be there.
Diffstat (limited to 'doc_src/design.hdr')
-rw-r--r--doc_src/design.hdr2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc_src/design.hdr b/doc_src/design.hdr
index 2217ee8a..f1047546 100644
--- a/doc_src/design.hdr
+++ b/doc_src/design.hdr
@@ -100,7 +100,7 @@ language will often be rather low-level.
Examples:
- There should only be one type of input to the shell, lists of commands. Loops, conditionals and variable assignments are all performed through regular commands.
-- The differences between builtin commands, shellscript functions and builtin commands should be made as small as possible. Builtins and shellscript functions should have exactly the same types of argument expansion as other commands, should be possible to use in any position in a pipeline, and should support any io redirection.
+- The differences between builtin commands and shellscript functions should be made as small as possible. Builtins and shellscript functions should have exactly the same types of argument expansion as other commands, should be possible to use in any position in a pipeline, and should support any io redirection.
- Instead of forking when performing command substitution to provide a fake variable scope, all fish commands are performed from the same process, and fish instead supports true scoping.
- All blocks end with the \c end builtin.