From cbd0a6ec364cecf28a5cc1121dfc70af3d179483 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Fri, 5 Aug 2022 09:13:16 +0100 Subject: [PATCH] Update docs/examples/styles/background.py Co-authored-by: darrenburns --- docs/examples/styles/background.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/examples/styles/background.py b/docs/examples/styles/background.py index 90742620a..41f5d7e48 100644 --- a/docs/examples/styles/background.py +++ b/docs/examples/styles/background.py @@ -21,9 +21,9 @@ class BackgroundApp(App): """ def compose(self): - yield Static("Hello, World!", id="static1") - yield Static("Hello, World!", id="static2") - yield Static("Hello, World!", id="static3") + yield Static("Widget 1", id="static1") + yield Static("Widget 2", id="static2") + yield Static("Widget 3", id="static3") app = BackgroundApp()