diff --git a/client/docs/source/other/usage.rst b/client/docs/source/other/usage.rst index b8bd653..3306c2d 100644 --- a/client/docs/source/other/usage.rst +++ b/client/docs/source/other/usage.rst @@ -12,13 +12,13 @@ Vorwärts und rückwärts fahren from compLib.Motor import * def forward(): - Motor.power(0, -30); - Motor.power(3, 30); + Motor.power(0, -30) + Motor.power(3, 30) def backward(): - Motor.power(0, 30); - Motor.power(3, -30); + Motor.power(0, 30) + Motor.power(3, -30) def main(): print("hallo ich bin ein roboter beep buup")