class Protocol::HTTP::Header::Vary

def << value

@parameter value [String] the value or values to add, separated by commas.

Adds one or more comma-separated values to the `vary` header. The values are converted to lowercase for normalization.
def << value
	super(value.downcase)
end