Skip to content

Commit 3db156e

Browse files
authored
Merge pull request #194 from lwasser/fix-headings
Fix: inconsistent headings
2 parents 710e4e5 + bbfe98a commit 3db156e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tutorials/1-installable-code.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ pyospackage/
258258
├── add_numbers.py
259259
```
260260

261-
## Step 3. Add code to your `add_numbers.py` module
261+
## Step 3: Add code to your `add_numbers.py` module
262262

263263
If you are following along and making a Python package from scratch then you can add the code below to your `add_numbers.py` module. The function below adds two integers together and returns the result. Notice that the code below has a few features that we will review in future tutorials:
264264

@@ -298,7 +298,7 @@ def add_num(a: int, b: int) -> int:
298298
return a + b
299299
```
300300

301-
## Step 4. Modify metadata in your `pyproject.toml` file
301+
## Step 4: Modify metadata in your `pyproject.toml` file
302302

303303
Next, you will modify some of the metadata (information) that
304304
Hatch adds to your `pyproject.toml` file. You are
@@ -404,7 +404,7 @@ You will learn how to automate defining a package
404404
version using git tags in the version and release your package lesson.
405405
:::
406406

407-
### Step 3: Adjust your project classifiers
407+
### Adjust project classifiers
408408

409409
Hatch by default provides a list of classifiers that define what
410410
Python versions your package supports. While this won't impact your package build, let's remove some of them that you likely don't need.
@@ -464,7 +464,7 @@ Once you have your project metadata in the pyproject.toml file, you will
464464
rarely update it. In the next lesson you’ll add more metadata and structure to this file.
465465
:::
466466

467-
## Step 5. Install your package locally
467+
## Step 5: Install your package locally
468468

469469
At this point you should have:
470470

@@ -564,7 +564,7 @@ pyosPackage 0.1.0 /Users/yourusername/path/here/pyosP
564564
...
565565
```
566566
567-
## 6. Test out your new package
567+
## Step 6: Test out your new package
568568
569569
After installing your package, type “python” at the command prompt in your chosen terminal to start
570570
a Python session in your active Python environment.

0 commit comments

Comments
 (0)