fixed panel/table copypasta

This commit is contained in:
Brandon Wood 2022-11-15 13:42:46 -09:00 committed by Patrik Svensson
parent 55c3f3b7a8
commit a9b97fa4dc

View File

@ -12,7 +12,7 @@ The `Panel` widget can be used to organize text into a rendered box.
## Usage
To render a table, create a `Table` instance, passing a string to its constructor to assign the contents.
To render a panel, create a `Panel` instance, passing a string to its constructor to assign the contents.
```csharp
var panel = new Panel("Hello World");
@ -58,4 +58,4 @@ is long in length may get truncated with certain content.
```csharp
// Sets the expand property
panel.Expand = true;
```
```