Alignment => Justification Docs Fixes

This commit is contained in:
Will Baldoumas
2023-01-25 17:45:30 -08:00
parent beca0b2419
commit 62b30d6072
4 changed files with 11 additions and 11 deletions

View File

@ -12,7 +12,7 @@ Spectre.Console can render [FIGlet](http://www.figlet.org/) text by using the `F
```csharp
AnsiConsole.Write(
new FigletText("Hello")
.LeftAligned()
.LeftJustified()
.Color(Color.Red));
```
@ -26,6 +26,6 @@ var font = FigletFont.Load("starwars.flf");
AnsiConsole.Write(
new FigletText(font, "Hello")
.LeftAligned()
.LeftJustified()
.Color(Color.Red));
```