From c1cd1ee82c222a6b297896ea7907c348a713d160 Mon Sep 17 00:00:00 2001 From: Georg Haas Date: Wed, 8 Mar 2017 16:27:00 +0100 Subject: [PATCH] doc: fix format --- doc/source/tutorial/capability.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/tutorial/capability.rst b/doc/source/tutorial/capability.rst index af5a943..bd33fb0 100644 --- a/doc/source/tutorial/capability.rst +++ b/doc/source/tutorial/capability.rst @@ -81,7 +81,7 @@ And the new class works as intended:: >>> some_transformer.transform(10) 100 -And the classes can be mixed in together: +And the classes can be mixed in together:: class ExampleThree(BaseCollector, PlusOne, TimesTen): pass