diff --git a/docs/input/prompts/text.md b/docs/input/prompts/text.md index 4e19e25..1c75b55 100644 --- a/docs/input/prompts/text.md +++ b/docs/input/prompts/text.md @@ -154,7 +154,7 @@ var password = AnsiConsole.Prompt( .Secret()); // Echo the password back to the terminal -Console.WriteLine($"Joking is not a secret that your password is {password}"); +Console.WriteLine($"Your password is {password}"); ``` ## Masks @@ -183,7 +183,7 @@ var password = AnsiConsole.Prompt( .Secret('-')); // Echo the password back to the terminal -Console.WriteLine($"Joking is not a secret that your password is {password}"); +Console.WriteLine($"Your password is {password}"); ``` ## Optional