Remove Render from docs in favor of Write (#613)

The `Render` method has been obsoleted.
This commit is contained in:
Patrik Svensson
2021-11-09 21:22:18 +01:00
committed by GitHub
parent e86f9d3c5a
commit 21ac952307
9 changed files with 23 additions and 23 deletions

View File

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