# File lib/pry/module_candidate.rb, line 60
      def doc
        return @doc if @doc
        raise CommandError, "Could not locate doc for #{wrapped}!" if file.nil?

        @doc = process_doc(Pry::Code.from_file(file).comment_describing(line))
      end