summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--ruby.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/ruby.html.markdown b/ruby.html.markdown
index 6e618861..af7af918 100644
--- a/ruby.html.markdown
+++ b/ruby.html.markdown
@@ -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.