From a9b97fa4dc0e868e1835b91ceed3641085d282ae Mon Sep 17 00:00:00 2001 From: Brandon Wood Date: Tue, 15 Nov 2022 13:42:46 -0900 Subject: [PATCH] fixed panel/table copypasta --- docs/input/widgets/panel.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/input/widgets/panel.md b/docs/input/widgets/panel.md index 745d7e6d0..bffcffb58 100644 --- a/docs/input/widgets/panel.md +++ b/docs/input/widgets/panel.md @@ -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; -``` \ No newline at end of file +```