Skip to content

Commit

Permalink
Fix strange sentence in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
patriksvensson committed Sep 14, 2024
1 parent c70a8b8 commit 7f8ed50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/input/prompts/text.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 7f8ed50

Please sign in to comment.