summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2013-07-10 11:12:43 -0700
committerAdam Bard <github@adambard.com>2013-07-10 11:12:43 -0700
commit50444ed21f224c2de7bc7d408621152daa1d06c8 (patch)
treefd22c1bb32cb829dcc3980d9430783ec64d21591
parent7d01c382043264ea4a68de8adc80a253d9de12d8 (diff)
parent8c1300ba63f197519acc18b9042c9a1b7172096f (diff)
Merge pull request #118 from tt/fix-typo-in-ruby
Fix typo in Ruby
-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.