diff --git a/sum23/projects/p11/README.md b/sum23/projects/p11/README.md
index 6956c8cc604c29474e2c3eb776ae7da7feac931e..9b2e236f93f0c9f1a2c14cd47e03355e8b679b03 100644
--- a/sum23/projects/p11/README.md
+++ b/sum23/projects/p11/README.md
@@ -3,11 +3,10 @@
 
 ## Corrections and clarifications:
 
-* None yet.
+* In Q10 and Q13, the first version of this assignment referenced a function `get_paths_in` that does not exist. You should use the function `get_all_paths_in` when solving Q10 and Q13.
 
 **Find any issues?** Create a post on Piazza
 
-
 ## Instructions:
 
 This project will focus on **data analysis**, **creating scatter plots**, and **recursion**. In this project, you will continue from where you left off in P10. You will analyze the data structures you created in P10 to answer some interesting questions about our dataset.
diff --git a/sum23/projects/p11/p11.ipynb b/sum23/projects/p11/p11.ipynb
index 20c267dbf97b0498f251e37fcd95c63919c2882a..1d0faa85153f2e50d68bd89edf658bf5daa5d550 100644
--- a/sum23/projects/p11/p11.ipynb
+++ b/sum23/projects/p11/p11.ipynb
@@ -1415,7 +1415,7 @@
    "source": [
     "**Question 10:** What are the **paths** of the files in the `others` directory of the `broken_data` directory?\n",
     "\n",
-    "Your output **must** be a **list** of **relative paths**. You **must** answer this question by calling the `get_paths_in` function.\n",
+    "Your output **must** be a **list** of **relative paths**. You **must** answer this question by calling the `get_all_paths_in` function.\n",
     "\n",
     "**Warning:** Remember that you **must** only use `os.path.join` to create paths."
    ]
@@ -1539,7 +1539,7 @@
    "source": [
     "**Question 13:** What are the **paths** of the files in the `broken_data` directory?\n",
     "\n",
-    "Your output **must** be a **list** of **relative paths**. You **must** answer this question by calling the `get_paths_in` function."
+    "Your output **must** be a **list** of **relative paths**. You **must** answer this question by calling the `get_all_paths_in` function."
    ]
   },
   {