Remove end-of-line colon

This commit is contained in:
Troels Thomsen 2013-07-10 19:22:07 +02:00
parent 7d01c38204
commit 8c1300ba63

View File

@ -267,7 +267,7 @@ class Human
@@species = "H. sapiens"
# Basic initializer
def initialize(name, age=0):
def initialize(name, age=0)
# Assign the argument to the "name" instance variable for the instance
@name = name
# If no age given, we will fall back to the default in the arguments list.