diff options
author | Louie Dinh <ldinh@athinkingape.com> | 2013-07-01 11:50:19 -0700 |
---|---|---|
committer | Louie Dinh <ldinh@athinkingape.com> | 2013-07-01 11:50:41 -0700 |
commit | 0e0fed1e304e89ef16d449d9e2ffcc374a152071 (patch) | |
tree | 155935fbd537b93408833e9c2fcf3f84451d4fe7 /python.html.markdown | |
parent | e5d2150714a7145e539245f305303aa39962df7c (diff) |
Fix typo
Diffstat (limited to 'python.html.markdown')
-rw-r--r-- | python.html.markdown | 2 |
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 |