From f99127a158cc7d7a8a014c72a56c91a5a000800d Mon Sep 17 00:00:00 2001 From: Josh Leichtung Date: Sat, 17 Apr 2021 22:10:53 -0700 Subject: [PATCH] Fix spelling of wheel in Wildcards docs --- doc_src/language.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc_src/language.rst b/doc_src/language.rst index 211b0fbc6..f032db20b 100644 --- a/doc_src/language.rst +++ b/doc_src/language.rst @@ -445,7 +445,7 @@ When a parameter includes an :ref:`unquoted ` ``*`` star (or "asterisk") - ``?`` can match any single character except ``/``. This is deprecated and can be disabled via the ``qmark-noglob`` :ref:`feature flag`, so ``?`` will just be an ordinary character. -Other shells, such as zsh, have a much richer glob syntax, like ``**(.)`` to only match regular files. Fish does not. Instead of reinventing the whell, use programs like ``find`` to look for files. For example:: +Other shells, such as zsh, have a much richer glob syntax, like ``**(.)`` to only match regular files. Fish does not. Instead of reinventing the wheel, use programs like ``find`` to look for files. For example:: function ff --description 'Like ** but only returns plain files.' # This also ignores .git directories.