From 4f911f88ca6aec33e66407778cc2fc72dbf49151 Mon Sep 17 00:00:00 2001 From: Dario Coscia <93731561+dario-coscia@users.noreply.github.com> Date: Wed, 6 Mar 2024 16:47:06 +0100 Subject: [PATCH] Fix typo tutorial geometry (#259) * is_inside -> sample rename --- docs/source/_rst/tutorials/tutorial6/tutorial.rst | 2 +- tutorials/tutorial6/tutorial.ipynb | 2 +- tutorials/tutorial6/tutorial.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/_rst/tutorials/tutorial6/tutorial.rst b/docs/source/_rst/tutorials/tutorial6/tutorial.rst index 770ead5..32fdc62 100644 --- a/docs/source/_rst/tutorials/tutorial6/tutorial.rst +++ b/docs/source/_rst/tutorials/tutorial6/tutorial.rst @@ -261,7 +261,7 @@ add in “pass” for the moment. def sample(self): pass -Now we have the skeleton for our ``Heart`` class. The ``is_inside`` +Now we have the skeleton for our ``Heart`` class. The ``sample`` method is where most of the work is done so let’s fill it out. .. code:: ipython3 diff --git a/tutorials/tutorial6/tutorial.ipynb b/tutorials/tutorial6/tutorial.ipynb index 6ef13e9..65df529 100644 --- a/tutorials/tutorial6/tutorial.ipynb +++ b/tutorials/tutorial6/tutorial.ipynb @@ -422,7 +422,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Now we have the skeleton for our `Heart` class. The `is_inside` method is where most of the work is done so let's fill it out." + "Now we have the skeleton for our `Heart` class. The `sample` method is where most of the work is done so let's fill it out." ] }, { diff --git a/tutorials/tutorial6/tutorial.py b/tutorials/tutorial6/tutorial.py index 966609d..7955a55 100644 --- a/tutorials/tutorial6/tutorial.py +++ b/tutorials/tutorial6/tutorial.py @@ -198,7 +198,7 @@ class Heart(Location): pass -# Now we have the skeleton for our `Heart` class. The `is_inside` method is where most of the work is done so let's fill it out. +# Now we have the skeleton for our `Heart` class. The `sample` method is where most of the work is done so let's fill it out. # In[14]: