From f7a66d7d449c54a4fb54e7f558c0483bd2165632 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Tue, 5 May 2020 10:14:25 +0100 Subject: [PATCH] doc typo --- docs/source/protocol.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/protocol.rst b/docs/source/protocol.rst index ea0728e9..7b133e9e 100644 --- a/docs/source/protocol.rst +++ b/docs/source/protocol.rst @@ -55,7 +55,7 @@ For complete control over how a custom object is rendered to the terminal, you c class MyObject: def __console__(self, console: Console, options: ConsoleOptions) -> RenderResult: yield Segment("My", "magenta") - yield Segment("Object", green") + yield Segment("Object", "green") yield Segment("()", "cyan")