# File lib/rspec/core/drb_options.rb, line 39
    def add_full_description(argv)
      if @submitted_options[:full_description]
        # The argument to --example is regexp-escaped before being stuffed
        # into a regexp when received for the first time (see OptionParser).
        # Hence, merely grabbing the source of this regexp will retain the
        # backslashes, so we must remove them.
        argv << "--example" << @submitted_options[:full_description].source.delete('\\')
      end
    end