Wrong method in code example

Wrong method called in the documentation for the Calendar widget.
This commit is contained in:
Johan Lindfors 2021-05-19 13:34:54 +02:00 committed by Patrik Svensson
parent 315a52f3e9
commit 5d68020abb

View File

@ -58,7 +58,7 @@ You can hide the calendar header.
```csharp
var calendar = new Calendar(2020,10);
calendar.ShowHeader();
calendar.HideHeader();
AnsiConsole.Render(calendar);
```