Fix Rule widget docs

This commit is contained in:
Tomasz Prasołek 2023-07-16 07:08:02 +02:00 committed by Patrik Svensson
parent 2af901a814
commit 813a53cdfa

View File

@ -41,7 +41,7 @@ You can set the rule's title alignment.
```csharp
var rule = new Rule("[red]Hello[/]");
rule.Alignment = Justify.Left;
rule.Justification = Justify.Left;
AnsiConsole.Write(rule);
```