From 07c09bdee2b63190630d714cef765d748a92d429 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Sat, 24 Sep 2022 15:15:33 -0700 Subject: [PATCH] Tutorial: Merge the footnotes on aliases and abbreviations together @mqudsi's feedback from #9226 --- doc_src/tutorial.rst | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/doc_src/tutorial.rst b/doc_src/tutorial.rst index 9668605be..ca1f01768 100644 --- a/doc_src/tutorial.rst +++ b/doc_src/tutorial.rst @@ -579,7 +579,7 @@ A fish function is a list of commands, which may optionally take arguments. Unli # prints: Hello everybody! -Unlike other shells, fish does not have aliases or special prompt syntax. Functions take their place. [#]_ [#]_ +Unlike other shells, fish does not have aliases or special prompt syntax. Functions take their place. [#]_ You can list the names of all functions with the :doc:`functions ` builtin (note the plural!). fish starts out with a number of functions:: @@ -597,9 +597,7 @@ You can see the source for any function by passing its name to ``functions``:: For more, see :ref:`Functions `. -.. [#] There is a function called :doc:`alias `, but it's just a shortcut to make functions. - -.. [#] fish also provides :ref:`abbreviations `, through the :ref:`abbr ` command. +.. [#] There is a function called :doc:`alias `, but it's just a shortcut to make functions. fish also provides :ref:`abbreviations `, through the :ref:`abbr ` command. Loops -----