Merge pull request #1020 from paw-lu/layout-docs-string

Add missing closing string quote to Layout example in doc
This commit is contained in:
Will McGugan 2021-02-16 19:46:48 +00:00 committed by GitHub
commit 61f5a0ddae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ The first position argument to ``Layout`` can be any Rich renderable, which will
layout["right"].split(
Layout(Panel("Hello")),
Layout(Panel("World!))
Layout(Panel("World!"))
)
You can also call :meth:`~rich.layout.Layout.update` to set or replace the current renderable::