fixed fake #pretty_inspect method
--- MacRuby/branches/experimental/mspec/lib/pp.rb 2009-03-23 03:31:59 UTC (rev 1078)
+++ MacRuby/branches/experimental/mspec/lib/pp.rb 2009-03-23 03:35:25 UTC (rev 1079)
@@ -1,5 +1,5 @@
module Kernel
- def pretty_inspect(obj)
- puts obj.inspect
+ def pretty_inspect
+ self.inspect
end
end