summaryrefslogtreecommitdiffstats
path: root/doc/doxydown/doxydown.pl
diff options
context:
space:
mode:
Diffstat (limited to 'doc/doxydown/doxydown.pl')
-rwxr-xr-xdoc/doxydown/doxydown.pl10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/doxydown/doxydown.pl b/doc/doxydown/doxydown.pl
index 9b4c36814..9c2f74131 100755
--- a/doc/doxydown/doxydown.pl
+++ b/doc/doxydown/doxydown.pl
@@ -271,12 +271,12 @@ sub print_markdown {
}
}
- if ($m->{'stucts'}) {
- if ( scalar(@{ $m->{'stucts'} }) > 0 ) {
- print "\n## Stucts\n\nThe module `$mname` defines the following stucts.\n\n";
+ if ($m->{'structs'}) {
+ if ( scalar(@{ $m->{'structs'} }) > 0 ) {
+ print "\n## Structs\n\nThe module `$mname` defines the following structs.\n\n";
- foreach ( @{ $m->{'stucts'} } ) {
- print_stuct_markdown( "Stuct", $_->{'name'}, $_ );
+ foreach ( @{ $m->{'structs'} } ) {
+ print_struct_markdown( "Struct", $_->{'name'}, $_ );
print "\nBack to [module description](#$m->{'id'}).\n\n";