From 413b7d0e48e79913066abfa396bc685e4837608c Mon Sep 17 00:00:00 2001 From: Tomas Gonzalez <56565994+tommygonzaleza@users.noreply.github.com> Date: Tue, 27 Feb 2024 16:28:40 -0400 Subject: [PATCH] Update how-to-code-in-python.md --- src/content/how-to/how-to-code-in-python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/how-to/how-to-code-in-python.md b/src/content/how-to/how-to-code-in-python.md index 71ca3a27f..51c4a58f3 100644 --- a/src/content/how-to/how-to-code-in-python.md +++ b/src/content/how-to/how-to-code-in-python.md @@ -109,7 +109,7 @@ def myFunc(params): `:` They indicate where the code block begins. -`bloque de código` here will go all the logical operations that our function will need to perform to be able to return the result that we want. +`code_block` here will go all the logical operations that our function will need to perform to be able to return the result that we want. `return` what the function will return when executed.