From fb50e4eb55e05c91c01e55fa1713b3ad69fa42e3 Mon Sep 17 00:00:00 2001 From: Maciej Musielik Date: Sat, 1 Oct 2022 10:07:09 +0200 Subject: [PATCH] Fixing a typo ("termnial" -> "terminal") (#1872) --- docs/source/getting_started/example_scenes.rst | 2 +- example_scenes.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/getting_started/example_scenes.rst b/docs/source/getting_started/example_scenes.rst index 7df94b64..e51621c5 100644 --- a/docs/source/getting_started/example_scenes.rst +++ b/docs/source/getting_started/example_scenes.rst @@ -23,7 +23,7 @@ InteractiveDevlopment self.play(ShowCreation(square)) self.wait() - # This opens an iPython termnial where you can keep writing + # This opens an iPython terminal where you can keep writing # lines as if they were part of this construct method. # In particular, 'square', 'circle' and 'self' will all be # part of the local namespace in that terminal. diff --git a/example_scenes.py b/example_scenes.py index a871915f..d297ca33 100644 --- a/example_scenes.py +++ b/example_scenes.py @@ -593,7 +593,7 @@ class InteractiveDevelopment(Scene): self.play(ShowCreation(square)) self.wait() - # This opens an iPython termnial where you can keep writing + # This opens an iPython terminal where you can keep writing # lines as if they were part of this construct method. # In particular, 'square', 'circle' and 'self' will all be # part of the local namespace in that terminal.