From ee0e5023ffbad0b8a5c50cf2dec3d2b8ab229cbc Mon Sep 17 00:00:00 2001 From: Jose Velez <146593007+Jose-Velez-Borbon@users.noreply.github.com> Date: Sun, 5 Nov 2023 08:39:33 -0500 Subject: [PATCH] Fix typos - Part 4 - Update 3-lists.md --- data/part-4/3-lists.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/part-4/3-lists.md b/data/part-4/3-lists.md index cf5a4f6c4..f4f90563b 100644 --- a/data/part-4/3-lists.md +++ b/data/part-4/3-lists.md @@ -610,7 +610,7 @@ In this version, following the programming logic is more difficult, as it is no Organising your code into separate functions will improve you program's readability, but also make it easier to handle logical wholes. This in turn helps you that verify the program works as intended, as each function can be tested separately. -Another important use for functions is making code _reusable_. If you need to achieve some functionality twice is your program, it is a good idea to create your own function and name it appropriately: +Another important use for functions is making code _reusable_. If you need to achieve some functionality twice in your program, it is a good idea to create your own function and name it appropriately: ```python print("Shoe sizes:")