From 5429b540543925548343dcd5bf9e3fcbcaa70c0a Mon Sep 17 00:00:00 2001 From: Mika Tompuri <46688963+tompurker@users.noreply.github.com> Date: Tue, 11 Jun 2024 12:41:07 +0300 Subject: [PATCH] Update ohjelmoinnin_aloittaminen_vscode_en.mdx Added another missing 'i' letter in the example code to make spelling of the variable name consistent. --- .../installation/ohjelmoinnin_aloittaminen_vscode_en.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/public/md_pages/installation/ohjelmoinnin_aloittaminen_vscode_en.mdx b/frontend/public/md_pages/installation/ohjelmoinnin_aloittaminen_vscode_en.mdx index b28addc84..d78600600 100644 --- a/frontend/public/md_pages/installation/ohjelmoinnin_aloittaminen_vscode_en.mdx +++ b/frontend/public/md_pages/installation/ohjelmoinnin_aloittaminen_vscode_en.mdx @@ -73,7 +73,7 @@ Make the following changes to the source code: ```python editori = input("editori: ") -if editori == "word" or editor == "notepad": +if editori == "word" or editori == "notepad": print("surkea") ```