# File lib/pry/module_candidate.rb, line 68
      def doc
        return nil if file.nil?
        return @doc if @doc

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