From 86ccfe3d030e493a10adc4841190998b20d4ccff Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 31 Jan 2002 04:57:54 +0000 Subject: refine previous change. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2035 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/pp.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/pp.rb') diff --git a/lib/pp.rb b/lib/pp.rb index 82470ce90..24503b191 100644 --- a/lib/pp.rb +++ b/lib/pp.rb @@ -356,7 +356,7 @@ class File pp.nest(1) { pp.text "#<" pp.text self.class.name - pp.breakable; pp.text "dev="; pp.pp self.dev; pp.text ',' + pp.breakable; pp.text sprintf("dev=0x%x", self.dev); pp.text ',' pp.breakable; pp.text "ino="; pp.pp self.ino; pp.text ',' pp.breakable pp.group { -- cgit