aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src/tutorial.hdr
diff options
context:
space:
mode:
authorGravatar Alan Thompson <thompson2526@gmail.com>2014-04-18 17:16:37 -0700
committerGravatar Konrad Borowski <xfix@prune.site>2014-04-29 07:27:56 +0200
commit07944cfd20de20b6863b2c0a9b73dc4be693859f (patch)
treedffd19127a7368ee1313cb427fbe46c6e27d5426 /doc_src/tutorial.hdr
parent55bc4168bf019374422807038d32bc3147dd94f6 (diff)
Change terminology in docs from 'environment variables' -> 'shell variables'
Diffstat (limited to 'doc_src/tutorial.hdr')
-rw-r--r--doc_src/tutorial.hdr6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc_src/tutorial.hdr b/doc_src/tutorial.hdr
index f28541b8..58f925d5 100644
--- a/doc_src/tutorial.hdr
+++ b/doc_src/tutorial.hdr
@@ -193,7 +193,7 @@ h3 { font-size: 110%; }
<li><a href="#tut_tab_completions"><span class="chevron">&rsaquo;</span> Tab Completions</a></li>
<li><a href="#tut_variables"><span class="chevron">&rsaquo;</span> Variables</a></li>
<li><a href="#tut_exit_status"><span class="chevron">&rsaquo;</span> Exit Status</a></li>
- <li><a href="#tut_exports"><span class="chevron">&rsaquo;</span> Environment Variables</a></li>
+ <li><a href="#tut_exports"><span class="chevron">&rsaquo;</span> Shell Variables</a></li>
<li><a href="#tut_lists"><span class="chevron">&rsaquo;</span> Lists</a></li>
<li><a href="#tut_command_substitutions"><span class="chevron">&rsaquo;</span> Command Substitutions</a></li>
<li><a href="#tut_combiners"><span class="chevron">&rsaquo;</span> Combiners (And, Or, Not)</a></li>
@@ -258,7 +258,7 @@ fish has excellent help and man pages. Run <tt>help</tt> to open help in a web b
<pre>
> <b>man</b> <i>set</i>
-set - handle environment variables
+set - handle shell variables
Synopsis...
</pre>
@@ -429,7 +429,7 @@ Unlike other shells, fish stores the exit status of the last command in <tt>$sta
Zero is considered success, and non-zero is failure.
-<h2 id="tut_exports">Exports (Environment Variables)</h2>
+<h2 id="tut_exports">Exports (Shell Variables)</h2>
Unlike other shells, fish does not have an export command. Instead, a variable is exported via an option to <tt>set</tt>, either <tt>--export</tt> or just <tt>-x</tt>.