summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTroels Thomsen <troels@thomsen.io>2013-07-10 19:22:07 +0200
committerTroels Thomsen <troels@thomsen.io>2013-07-10 19:22:07 +0200
commit8c1300ba63f197519acc18b9042c9a1b7172096f (patch)
treefd22c1bb32cb829dcc3980d9430783ec64d21591
parent7d01c382043264ea4a68de8adc80a253d9de12d8 (diff)
Remove end-of-line colon
-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.