summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam <adam@adambard.com>2013-07-01 14:51:34 -0700
committerAdam <adam@adambard.com>2013-07-01 14:51:34 -0700
commit87670d3bb63f96c65a105824fce4f85f4ef0f845 (patch)
tree96a6709aab40e550c6b26cf054dc2737c8f320a5
parent34c86dc9583b43935e6fe292fbd3aaa69c4ef048 (diff)
parent0e0fed1e304e89ef16d449d9e2ffcc374a152071 (diff)
Merge branch 'master' of https://github.com/adambard/learnxinyminutes-docs
-rw-r--r--python.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/python.html.markdown b/python.html.markdown
index 90eaf1c9..59a0b85c 100644
--- a/python.html.markdown
+++ b/python.html.markdown
@@ -447,7 +447,7 @@ print math.sqrt(16) #=> 4
# You can get specific functions from a module
from math import ceil, floor
print ceil(3.7) #=> 4.0
-print floor3.7) #=> 3.0
+print floor(3.7) #=> 3.0
# You can import all functions from a module.
# Warning: this is not recommended