From cf044038e09b1dfd9fbfbb980622e626bba585c7 Mon Sep 17 00:00:00 2001 From: Trevor Bender Date: Sun, 10 Aug 2025 07:49:10 -0400 Subject: [PATCH] fix typo in completions.rst --- doc_src/completions.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc_src/completions.rst b/doc_src/completions.rst index c1901b807..82c4bf9d2 100644 --- a/doc_src/completions.rst +++ b/doc_src/completions.rst @@ -82,7 +82,7 @@ As a more comprehensive example, here's a commented excerpt of the completions f # # The `-n`/`--condition` option takes script as a string, which it executes. # If it returns true, the completion is offered. - # Here the condition is the `__fish_seen_subcommands_from` helper function. + # Here the condition is the `__fish_seen_subcommand_from` helper function. # It returns true if any of the given commands is used on the commandline, # as determined by a simple heuristic. # For more complex uses, you can write your own function.