Fix typo tutorial geometry (#259)

* is_inside -> sample rename
This commit is contained in:
Dario Coscia
2024-03-06 16:47:06 +01:00
committed by GitHub
parent 3d72205380
commit 4f911f88ca
3 changed files with 3 additions and 3 deletions

View File

@@ -261,7 +261,7 @@ add in “pass” for the moment.
def sample(self): def sample(self):
pass 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 lets fill it out. method is where most of the work is done so lets fill it out.
.. code:: ipython3 .. code:: ipython3

View File

@@ -422,7 +422,7 @@
"cell_type": "markdown", "cell_type": "markdown",
"metadata": {}, "metadata": {},
"source": [ "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."
] ]
}, },
{ {

View File

@@ -198,7 +198,7 @@ class Heart(Location):
pass 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]: # In[14]: