summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-16 21:57:24 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-16 21:57:24 +0000
commitdb3bce11ddd45838022b321c1dd0a80c7662b5bf (patch)
tree08d96577c0625722cf2f6daff1485b8d7c01c351
parentea6511c63ae463ec63c51f344ee0a2fe83e8c9d0 (diff)
* object.c: Fix indentation of Class#inherited example.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35074 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--object.c6
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index e565d23695..b942165d63 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sat Mar 17 06:56:58 2012 Eric Hodel <[email protected]>
+
+ * object.c: Fix indentation of Class#inherited example.
+
Sat Mar 17 01:46:05 2012 Kazuhiro NISHIYAMA <[email protected]>
* string.c (trnext): fix bug with string ending with '\\'.
diff --git a/object.c b/object.c
index 80700fdccd..63af8a2f90 100644
--- a/object.c
+++ b/object.c
@@ -627,9 +627,9 @@ rb_obj_tap(VALUE obj)
* Example:
*
* class Foo
- * def self.inherited(subclass)
- * puts "New subclass: #{subclass}"
- * end
+ * def self.inherited(subclass)
+ * puts "New subclass: #{subclass}"
+ * end
* end
*
* class Bar < Foo