diff --git a/Lib/turtle.py b/Lib/turtle.py index b2fffa34ed0..50ea4ad3c5b 100644 --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -1965,7 +1965,7 @@ class TNavigator(object): Examples (for a Turtle instance named turtle): >>> turtle.circle(50) # full circle of radius 50 drawn counter-clockwise - >>> turtle.circle(-50) # full circle of radius 75 drawn clockwise + >>> turtle.circle(-75) # full circle of radius 75 drawn clockwise >>> turtle.circle(-50, 60) # 60 degree arc with radius 50 drawn clockwise >>> turtle.circle(80, steps=6) # regular hexagon