diff --git a/lib/pp.rb b/lib/pp.rb
index b81f84cec5..a2d4ebe41b 100644
--- a/lib/pp.rb
+++ b/lib/pp.rb
@@ -46,6 +46,7 @@ require 'prettyprint'
#
# To define a customized pretty printing function for your classes,
# redefine method #pretty_print(pp)
in the class.
+# Note that require 'pp'
is needed before redefining #pretty_print(pp)
.
#
# #pretty_print
takes the +pp+ argument, which is an instance of the PP class.
# The method uses #text, #breakable, #nest, #group and #pp to print the
@@ -632,10 +633,6 @@ end
module Kernel
# Returns a pretty printed object as a string.
#
- # In order to use this method you must first require the PP module:
- #
- # require 'pp'
- #
# See the PP module for more information.
def pretty_inspect
PP.pp(self, ''.dup)