From 2e596858f2a471aeb08a7a02d13a8f266d70be42 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Fri, 30 Sep 2022 15:32:18 -0400 Subject: [PATCH] fix: issue with page names Signed-off-by: Henry Schreiner --- _toc.yml | 4 ++-- notebooks/1.1 Intro to Classes.ipynb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_toc.yml b/_toc.yml index 47b148b..9323fed 100644 --- a/_toc.yml +++ b/_toc.yml @@ -4,8 +4,8 @@ parts: - caption: Object Model numbered: true chapters: - - file: notebooks/1.1 Inspection - - file: notebooks/1.2 Intro to Classes + - file: notebooks/1.1 Intro to Classes + - file: notebooks/1.2 Inspection - file: notebooks/1.3 Logging - file: notebooks/1.4 Debugging - file: notebooks/1.5 Profiling diff --git a/notebooks/1.1 Intro to Classes.ipynb b/notebooks/1.1 Intro to Classes.ipynb index b21f588..dccc90d 100644 --- a/notebooks/1.1 Intro to Classes.ipynb +++ b/notebooks/1.1 Intro to Classes.ipynb @@ -213,7 +213,7 @@ "\n", "```python\n", "class BadPath:\n", - " string_location = ?\n", + " string_location = ...\n", "\n", " def exists(self):\n", " return os.path.exists(self.string_location)\n",