From 45d4223352b0c2556bbcfc53197758bb9d7113f9 Mon Sep 17 00:00:00 2001
From: Allen Downey
Date: Tue, 29 Oct 2024 13:43:57 -0400
Subject: [PATCH] Update documentation
---
_sources/chap07.ipynb | 8 ++++++--
chap07.html | 4 ++--
2 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/_sources/chap07.ipynb b/_sources/chap07.ipynb
index 4cd3130..571a67d 100644
--- a/_sources/chap07.ipynb
+++ b/_sources/chap07.ipynb
@@ -114415,7 +114415,11 @@
"cell_type": "code",
"execution_count": 22,
"id": "4a0c46b9",
- "metadata": {},
+ "metadata": {
+ "tags": [
+ "raises-exception"
+ ]
+ },
"outputs": [
{
"ename": "NameError",
@@ -114933,7 +114937,7 @@
"id": "b2acc611",
"metadata": {},
"source": [
- "`uses_only` converts `word` and `letters` to lowercase, so it works with any combination of cases. "
+ "`uses_any` converts `word` and `letters` to lowercase, so it works with any combination of cases. "
]
},
{
diff --git a/chap07.html b/chap07.html
index 9274314..d836b8f 100644
--- a/chap07.html
+++ b/chap07.html
@@ -641,7 +641,7 @@ 7.3. Updating variables
If you try to update a variable that doesn’t exist, you get an error, because Python evaluates the expression on the right before it assigns a value to the variable on the left.
-