]> git.proxmox.com Git - pve-common.git/blobdiff - src/PVE/PodParser.pm
pod: skip aliases in generate_property_text
[pve-common.git] / src / PVE / PodParser.pm
index 8ad05980f71ea63f1a28ca99b703db63d45028c6..380ce6edc534218a6f147e2a832340513e610145 100644 (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;