summaryrefslogtreecommitdiff
path: root/lib/pp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pp.rb')
-rw-r--r--lib/pp.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/pp.rb b/lib/pp.rb
index 0a18a6f318..1698084e63 100644
--- a/lib/pp.rb
+++ b/lib/pp.rb
@@ -55,6 +55,8 @@ I like the latter. If you do too, this library is for you.
: pp(obj)
output ((|obj|)) to (({$>})) in pretty printed format.
+ It returns (({nil})).
+
== Customized output
To define your customized pretty printing function for your class,
redefine a method (({pretty_print(((|pp|)))})) in the class.
@@ -110,6 +112,7 @@ module Kernel
objs.each {|obj|
PP.pp(obj)
}
+ nil
end
end