Typo: colon should be dot to be consistent with everything else in PLIF.

This commit is contained in:
ian%hixie.ch 2002-09-19 18:23:36 +00:00
Родитель 3b826bf914
Коммит c327b415aa
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -287,7 +287,7 @@ sub hash {
foreach my $field (values(%{$self->fieldsByID})) {
# XXX should we also pass the field metadata on? (e.g. typeData)
$result->{'fields'}->{$field->fieldID} = $field->hash; # (not an array btw: could have holes)
$result->{'fields'}->{$field->category.':'.$field->name} = $field->hash;
$result->{'fields'}->{$field->category.'.'.$field->name} = $field->hash;
}
return $result;
}