From db3bce11ddd45838022b321c1dd0a80c7662b5bf Mon Sep 17 00:00:00 2001 From: drbrain Date: Fri, 16 Mar 2012 21:57:24 +0000 Subject: [PATCH] * 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 --- ChangeLog | 4 ++++ object.c | 6 +++--- 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 + + * object.c: Fix indentation of Class#inherited example. + Sat Mar 17 01:46:05 2012 Kazuhiro NISHIYAMA * 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