summaryrefslogtreecommitdiff
path: root/lib/pp.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-19 18:21:05 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-19 18:21:05 +0000
commitd6d457378232a417064f44b654b8357ae757836d (patch)
tree97845fe5fd371e9b22ae4b9fe4a0edb6dbd68201 /lib/pp.rb
parent18ffba64bdee370edf93de115215d15019e54f17 (diff)
* remove trailing spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40835 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/pp.rb')
-rw-r--r--lib/pp.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/pp.rb b/lib/pp.rb
index b7dbef6ca1..be8e389356 100644
--- a/lib/pp.rb
+++ b/lib/pp.rb
@@ -302,21 +302,21 @@ class PP < PrettyPrint
# Allows you to implement pretty print in your own class, for example:
# require 'pp'
- #
+ #
# class Cat
# include PP::ObjectMixin
- #
+ #
# attr_accessor :name, :age, :color
- #
+ #
# def initialize name
# @name = name
# end
- #
+ #
# def pretty_print q
# q.pp_object self
# end
# alias inspect pretty_print_inspect
- #
+ #
# end
#
# In order to use this class, try the following: