1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-11 17:24:29 +02:00

Fix tiny typos.

This commit is contained in:
cssmagic
2013-08-07 22:48:11 +08:00
parent 6e87679033
commit 0dff3a936c

View File

@@ -263,7 +263,7 @@ filled_set | other_set #=> {1, 2, 3, 4, 5, 6}
some_var = 5
# Here is an if statement. Indentation is significant in python!
# prints "some var is smaller than 10"
# prints "some_var is smaller than 10"
if some_var > 10:
print "some_var is totally bigger than 10."
elif some_var < 10: # This elif clause is optional.