diff options
Diffstat (limited to 'Lib/turtledemo')
-rwxr-xr-x | Lib/turtledemo/__main__.py | 2 | ||||
-rw-r--r-- | Lib/turtledemo/chaos.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Lib/turtledemo/__main__.py b/Lib/turtledemo/__main__.py index 4b6e389..6280c84 100755 --- a/Lib/turtledemo/__main__.py +++ b/Lib/turtledemo/__main__.py @@ -14,7 +14,7 @@ (1) How to use the demo viewer. Select a demoscript from the example menu. - The (syntax coloured) source code appears in the left + The (syntax colored) source code appears in the left source code window. IT CANNOT BE EDITED, but ONLY VIEWED! The demo viewer windows can be resized. The divider between text diff --git a/Lib/turtledemo/chaos.py b/Lib/turtledemo/chaos.py index d4656f8..6a45d0d 100644 --- a/Lib/turtledemo/chaos.py +++ b/Lib/turtledemo/chaos.py @@ -29,8 +29,8 @@ def coosys(): line(-1, 0, N+1, 0) line(0, -0.1, 0, 1.1) -def plot(fun, start, colour): - pencolor(colour) +def plot(fun, start, color): + pencolor(color) x = start jumpto(0, x) pendown() |