From 8125aae9e2e00ac5683f077d7b0cc889f2b39dba Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Mon, 3 Apr 2023 22:14:30 +0200 Subject: Corregir typo en ejemplo fixes #3 --- es/04_funciones.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'es/04_funciones.md') diff --git a/es/04_funciones.md b/es/04_funciones.md index b23c457..5b78d9c 100644 --- a/es/04_funciones.md +++ b/es/04_funciones.md @@ -90,7 +90,7 @@ otras funciones. Por ejemplo: ``` python ->>> def filtra_lista(list): +>>> def filtra_lista(lista): ... def mayor_que_4(a): ... return a > 4 ... return list( filter(mayor_que_4, lista) ) -- cgit v1.2.3