From 813a53cdfaf24fb0ad759cc7af74d10b197c6618 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Praso=C5=82ek?= Date: Sun, 16 Jul 2023 07:08:02 +0200 Subject: [PATCH] Fix Rule widget docs --- docs/input/widgets/rule.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/input/widgets/rule.md b/docs/input/widgets/rule.md index 8272dcd..06fa9db 100644 --- a/docs/input/widgets/rule.md +++ b/docs/input/widgets/rule.md @@ -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); ```