Added a comment clarification.

This commit is contained in:
ian%hixie.ch 2001-09-09 19:06:13 +00:00
Родитель 2540bbbc43
Коммит a72ec34741
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -106,7 +106,7 @@ sub write {
foreach my $variable (sort(keys(%$self))) {
if ($variable !~ /^_/o) { # we skip the internal variables (prefixed with '_')
my $contents = Data::Dumper->Dump([$self->{$variable}]);
chop($contents); # remove the newline
chop($contents); # remove the newline (newline is guarenteed so no need to chomp)
$settings .= "\$self->propertySet('$variable', $contents);\n";
}
}