From 7f8ed509bba6d22a8345d85fd231369f86485774 Mon Sep 17 00:00:00 2001 From: Patrik Svensson Date: Sat, 14 Sep 2024 12:59:19 +0200 Subject: [PATCH] Fix strange sentence in docs --- docs/input/prompts/text.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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