summaryrefslogtreecommitdiffhomepage
path: root/es-es/python-es.html.markdown
diff options
context:
space:
mode:
authorJorge Puente Sarrín <jorge@puentesarr.in>2015-10-28 15:52:29 -0500
committerJorge Puente Sarrín <jorge@puentesarr.in>2015-10-28 15:52:29 -0500
commit6fec7490ade632cb22f2f22cd999e4f797f75eef (patch)
treeb86c046ba66097c65350037016ce0d8350e10f7a /es-es/python-es.html.markdown
parent26993bee2c609cd7398d5fbdb64b20f6408b0404 (diff)
Minor edit.
Diffstat (limited to 'es-es/python-es.html.markdown')
-rw-r--r--es-es/python-es.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/es-es/python-es.html.markdown b/es-es/python-es.html.markdown
index 83341682..a27203d1 100644
--- a/es-es/python-es.html.markdown
+++ b/es-es/python-es.html.markdown
@@ -48,7 +48,7 @@ Nota: Este artículo aplica a Python 2.7 específicamente, pero debería ser apl
# Resultado de la división de enteros truncada para positivos y negativos
5 // 3 # => 1
-5.0 // 3.0 # => 1.0 # funciona con números en coma flotante
+5.0 // 3.0 # => 1.0 # funciona con números de coma flotante
-5 // 3 # => -2
-5.0 // 3.0 # => -2.0