Skip to content

Commit 4b63292

Browse files
committed
Fixing the table of contents in README.
1 parent e786f83 commit 4b63292

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,10 @@ The goal of this exercise is to learn some basics of debugging Python code.
44

55
- [Getting set up](#getting-set-up)
66
- [Learning objective](#learning-objective)
7-
- [The goal](#the-goal)
8-
- [The script](#the-script)
9-
- [Best practice 1: Put code into functions](#best-practice-1-put-code-into-functions)
10-
- [Best practice 2: Write modules not scripts](#best-practice-2-write-modules-not-scripts)
11-
- [Best practice 3: Use docstrings to document your code](#best-practice-3-use-docstrings-to-document-your-code)
12-
- [Best practice 4: Add tests to your docstrings](#best-practice-4-add-tests-to-your-docstrings)
7+
- [The Python debugger](#the-python-dbugger)
8+
- [Running the script through the debugger](#running-the-script-through-the-debugger)
9+
- [Using breakpoints](#using-breakpoints)
10+
- [The Exercise](#the-exercise)
1311
- [Acknowledgments](#acknowledgments)
1412
- [License](#license)
1513

@@ -332,7 +330,7 @@ like we learned above. For example, use `p` and `type` to inspect the variables
332330
<class 'str'>
333331

334332

335-
# The exercise
333+
# The Exercise
336334

337335
Now that you know the basics of the Python debugger,
338336
use it to debug the `area_of_rectangle.py` script.

0 commit comments

Comments
 (0)