Skip to content

Commit

Permalink
fix: broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
lwasser committed Oct 11, 2024
1 parent c2ccc09 commit b576082
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions clean-modular-code/activity-2/clean-code-activity-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ kernelspec:

# Activity 2 - DRY Code & Functions

In [activity 1](/activity-1/clean-code-activity-1), you took some code and made it cleaner and easier to understand by:
In [activity 1](../activity-1/clean-code-activity-1), you took some code and made it cleaner and easier to understand by:

* using expressive variable names,
* following PEP8 code style guidelines, and
* creating pseudocode as a way to create a plan to clean up the code and make it easier to maintain.

In this activity, you will make the code more [DRY which stands for Don't Repeat Yourself](../python-dry-modular-code.html).
In this activity, you will make the code [DRY which stands for Don't Repeat Yourself](../python-dry-modular-code).

You can use the script you worked on in Activity 1 here, or you can use the cleaned-up script provided below.
You can use the script you worked on in Activity 1 here or the cleaned-up script provided below.

:::{note}
In the [final activity](/activity-3/clean-code-activity-3), you will
In [activity 3](../activity-3/clean-code-activity-3), you will

* Use conditional statements to control if and when code is executed.
* Add checks to your code
Expand Down

0 comments on commit b576082

Please sign in to comment.