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 diff --git a/doc/source/tutorial/tutorial006.rst b/doc/source/tutorial/tutorial006.rst index 7e81561..c32f3b3 100644 --- a/doc/source/tutorial/tutorial006.rst +++ b/doc/source/tutorial/tutorial006.rst @@ -36,7 +36,7 @@ And creating an instance:: In addition to the other command line options that are typically included in BACpypes applications, this can be wrapped:: - if '--console' in sys.agv: + if '--console' in sys.argv: ConsoleCmd() Command Recall