From 885537cd80727beb2b9087423373207d9adea2e4 Mon Sep 17 00:00:00 2001 From: Omar Brahimi Date: Sat, 22 Feb 2025 12:43:54 +0100 Subject: [PATCH] Update console/input.rst Co-authored-by: Matthieu Lempereur --- console/input.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console/input.rst b/console/input.rst index a835a13d8ed..3a37704df23 100644 --- a/console/input.rst +++ b/console/input.rst @@ -320,7 +320,7 @@ can also implement value completion for the input in your commands. For instance, you may want to complete all usernames from the database in the ``name`` argument of your greet command. -To achieve this, use the 5th argument of ``addArgument()`` and the 6th argument of ``addOption``:: +To achieve this, use the 5th argument of ``addArgument()`` or the 6th argument of ``addOption``:: // ... use Symfony\Component\Console\Completion\CompletionInput;