Subject: | B6 is content_headers_okay or valid_content_headers? |
In Web::Machine::FSM::States we have:
$STATE_DESC{'b6'} = 'content_headers_okay';
sub b6 {
my ($resource, $request, $response) = @_;
...
$resource->valid_content_headers( $content_headers ) ? \&b5 : \501;
}
The first line of the quote mentions 'content_headers_okay' while the second-to-last calls 'valid_content_headers' - shouldn't these two be the same?