diff --git a/Data structures/Lists introduction/task.md b/Data structures/Lists introduction/task.md
index b2d3d88..b53d80a 100644
--- a/Data structures/Lists introduction/task.md
+++ b/Data structures/Lists introduction/task.md
@@ -15,7 +15,7 @@ squares + [36, 49, 64, 81, 100]
[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
```
-You can explore lists in more detail by reading this page.
+You can explore lists in more detail by reading this page.
### Task
diff --git a/Strings/String formatting/task.md b/Strings/String formatting/task.md
index 46f374d..92f6475 100644
--- a/Strings/String formatting/task.md
+++ b/Strings/String formatting/task.md
@@ -9,7 +9,7 @@ or decimal values.
> of quirks that lead to a number of common errors.
> Using the newer formatted string literals (see [further](course://Strings/F-strings)),
> the str.format()
-> interface, or template strings may help avoid these errors.
+> interface, or template strings may help avoid these errors.
> Each of these alternatives provides their own trade-offs and benefits of
> simplicity, flexibility, and/or extensibility.