aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src/design.hdr
diff options
context:
space:
mode:
authorGravatar Ori Avtalion <ori@avtalion.name>2008-02-11 07:00:53 +1000
committerGravatar Ori Avtalion <ori@avtalion.name>2008-02-11 07:00:53 +1000
commite73c2be216bc08fa8e3ea86bffd8a8253740c2bc (patch)
treec338985dc867577904e337d18d3bec6e8ac3eb60 /doc_src/design.hdr
parentb0d324f1a7465f14eb00473f3c9002d9810deb55 (diff)
Add missing commas, letters and \c in the documentation
darcs-hash:20080210210053-57fc3-f7e03b3fca9dff8bdc02256dfb78478b68945015.gz
Diffstat (limited to 'doc_src/design.hdr')
-rw-r--r--doc_src/design.hdr6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc_src/design.hdr b/doc_src/design.hdr
index 963a2ab0..db93fa17 100644
--- a/doc_src/design.hdr
+++ b/doc_src/design.hdr
@@ -122,8 +122,8 @@ 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.
-- 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
+- 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.
\section disc The law of discoverability
@@ -147,7 +147,7 @@ until the next time she/he uses the same program.
Examples:
-- Everything should be tab-completable, and every tab completion should have a description
+- Everything should be tab-completable, and every tab completion should have a description.
- Every syntax error and error in a builtin command should contain an error message describing what went wrong and a relevant help page. Whenever possible, errors should be flagged red by the syntax highlighter.
- The help manual should be easy to read, easily available from the shell, complete and contain many examples
- The language should be uniform, so that once the user understands the command/argument syntax, he will know the whole language, and be able to use tab-completion to discover new featues.