Minor typo in sample code

This page has a typo in the following code block:

if (MyNumber > 5):
    “Big!”
else
    “Small!”

The “else” statement, according to my results, needs a colon behind it. Making for:

if (MyNumber > 5):
    “Big!”
else:
    “Small!”