From 880a31b60f46e7dfbe34f685f5c5bd3515899465 Mon Sep 17 00:00:00 2001 From: Oleg Kravtsov <166665905+olegresearcher@users.noreply.github.com> Date: Sat, 13 Apr 2024 23:17:38 +0300 Subject: [PATCH] Use English phrase in the example instead of Finnish As the tutorial seems to be convered to English, let's fix an example in section 2 --- data/part-4/2-more-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/part-4/2-more-functions.md b/data/part-4/2-more-functions.md index d072c80d3..510f62b35 100644 --- a/data/part-4/2-more-functions.md +++ b/data/part-4/2-more-functions.md @@ -689,7 +689,7 @@ Similarly, the return value of a function can be hinted at in the function defin ```python def ask_for_name() -> str: - name = input("Mikä on nimesi? ") + name = input("What is your name? ") return name ```