Add closing string quote to layout example

This commit is contained in:
Paulo S. Costa 2021-02-16 11:36:45 -08:00
parent 5e353b1785
commit 9b5ece5425

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::