From 97cf0bd6fc5137338f18d12d2dcfebb7add2fee3 Mon Sep 17 00:00:00 2001 From: Dario Coscia <93731561+dario-coscia@users.noreply.github.com> Date: Wed, 6 Mar 2024 16:43:11 +0100 Subject: [PATCH 1/3] Update tutorial.ipynb --- tutorials/tutorial6/tutorial.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/tutorial6/tutorial.ipynb b/tutorials/tutorial6/tutorial.ipynb index 6ef13e90f..65df529bc 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." ] }, { From 602c8eced9588508e4aae9cd48f140edcc4796bf Mon Sep 17 00:00:00 2001 From: Dario Coscia <93731561+dario-coscia@users.noreply.github.com> Date: Wed, 6 Mar 2024 16:45:05 +0100 Subject: [PATCH 2/3] Update tutorial.rst --- docs/source/_rst/tutorials/tutorial6/tutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/_rst/tutorials/tutorial6/tutorial.rst b/docs/source/_rst/tutorials/tutorial6/tutorial.rst index 770ead58c..32fdc6260 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 From ef0b389a6ccbd8f3d010cfe82eb0feda59fe4b11 Mon Sep 17 00:00:00 2001 From: Dario Coscia <93731561+dario-coscia@users.noreply.github.com> Date: Wed, 6 Mar 2024 16:46:27 +0100 Subject: [PATCH 3/3] Update tutorial.py --- tutorials/tutorial6/tutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/tutorial6/tutorial.py b/tutorials/tutorial6/tutorial.py index 966609dc3..7955a5594 100644 --- a/tutorials/tutorial6/tutorial.py +++ b/tutorials/tutorial6/tutorial.py @@ -198,7 +198,7 @@ def sample(self): 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]: