pod: skip aliases in generate_property_text

These are special and have no other properties to access.
This commit is contained in:
Wolfgang Bumiller 2016-03-08 11:56:40 +01:00 committed by Dietmar Maurer
parent b249031c64
commit 5a917b429a

View File

@ -125,6 +125,7 @@ sub generate_property_text {
my $data = '';
foreach my $key (sort keys %$schema) {
my $d = $schema->{$key};
next if $d->{alias};
my $desc = $d->{description};
my $typetext = schema_get_type_text($d);
$desc = 'No description available' if !$desc;