From 5a4739a797b4cc4f6cf3273f5fc2a241547800e2 Mon Sep 17 00:00:00 2001
From: David Mascharka <davidmascharka@users.noreply.github.com>
Date: Thu, 31 Oct 2024 14:20:18 -0400
Subject: [PATCH] Fix typo in #204

---
 docs/Module3_IntroducingNumpy/BasicArrayAttributes.ipynb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/Module3_IntroducingNumpy/BasicArrayAttributes.ipynb b/docs/Module3_IntroducingNumpy/BasicArrayAttributes.ipynb
index 4a497509..29536e1c 100644
--- a/docs/Module3_IntroducingNumpy/BasicArrayAttributes.ipynb
+++ b/docs/Module3_IntroducingNumpy/BasicArrayAttributes.ipynb
@@ -73,7 +73,7 @@
     "\n",
     "**ndarray.dtype**:\n",
     "\n",
-    "An object describing the data type of the elements in the array. Recall that NumPy's ND-arrays are *homogeneous*: they can only posses numbers of a uniform data type. \n",
+    "An object describing the data type of the elements in the array. Recall that NumPy's ND-arrays are *homogeneous*: they can only possess numbers of a uniform data type. \n",
     "\n",
     "```python\n",
     "# `example_array` contains integers, each of which are stored using 32 bits of memory\n",