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

@ -26,7 +26,7 @@ var image = new CanvasImage("cake.png");
image.MaxWidth(16);
// Render the image to the console
AnsiConsole.Render(image);
AnsiConsole.Write(image);
```
## Result
@ -50,7 +50,7 @@ image.BilinearResampler();
image.Mutate(ctx => ctx.Grayscale().Rotate(-45).EntropyCrop());
// Render the image to the console
AnsiConsole.Render(image);
AnsiConsole.Write(image);
```
## Result