From 51d9768e2c6e5f9757501357ccc8796d4f8125fa Mon Sep 17 00:00:00 2001 From: Corey Abshire Date: Wed, 30 Oct 2024 21:08:08 -0500 Subject: [PATCH] Fix docstring on divide tool. The divide tool in some module-3 notebooks said add instead. --- module-3/breakpoints.ipynb | 2 +- module-3/edit-state-human-feedback.ipynb | 2 +- module-3/time-travel.ipynb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/module-3/breakpoints.ipynb b/module-3/breakpoints.ipynb index 93e009fd4..3a16635d7 100644 --- a/module-3/breakpoints.ipynb +++ b/module-3/breakpoints.ipynb @@ -110,7 +110,7 @@ " return a + b\n", "\n", "def divide(a: int, b: int) -> float:\n", - " \"\"\"Adds a and b.\n", + " \"\"\"Divide a by b.\n", "\n", " Args:\n", " a: first int\n", diff --git a/module-3/edit-state-human-feedback.ipynb b/module-3/edit-state-human-feedback.ipynb index 31d797069..3640ded3f 100644 --- a/module-3/edit-state-human-feedback.ipynb +++ b/module-3/edit-state-human-feedback.ipynb @@ -104,7 +104,7 @@ " return a + b\n", "\n", "def divide(a: int, b: int) -> float:\n", - " \"\"\"Adds a and b.\n", + " \"\"\"Divide a by b.\n", "\n", " Args:\n", " a: first int\n", diff --git a/module-3/time-travel.ipynb b/module-3/time-travel.ipynb index b67408d71..edc47d25b 100644 --- a/module-3/time-travel.ipynb +++ b/module-3/time-travel.ipynb @@ -100,7 +100,7 @@ " return a + b\n", "\n", "def divide(a: int, b: int) -> float:\n", - " \"\"\"Adds a and b.\n", + " \"\"\"Divide a by b.\n", "\n", " Args:\n", " a: first int\n",