Fix strange sentence in docs

This commit is contained in:
Patrik Svensson 2024-09-14 12:59:19 +02:00 committed by Patrik Svensson
parent c70a8b8fc5
commit 7f8ed509bb

View File

@ -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