Additional comments explaining what might happen in cases of key clashes.

This commit is contained in:
ian%hixie.ch 2002-12-29 21:02:59 +00:00
Родитель c66533cb57
Коммит 007df6e6bf
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -225,7 +225,9 @@ sub getArgumentsTree {
$key = '';
}
$pointer->{$key} = $arguments->{$argument}->[0];
# if a key has multiple values, getArgumentsTree drops later values on the floor
# if a key has multiple values, getArgumentsTree drops later values on the floor.
# if foo.bar and foo both have values, then the keys will be $data->{'foo'}->{'bar'}
# and $data->{'foo'}->{''}.
}
return $data;
}