summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJosh Soref <2119212+jsoref@users.noreply.github.com>2022-02-22 17:01:28 -0500
committerGitHub <noreply@github.com>2022-02-22 22:01:28 +0000
commit2b8e6958f40ef36c1508118ac36a43694283a83c (patch)
treefa9a9b6843546bdb297b00bc78b83ab4c318f724 /doc
parent85faeb34719e2b0898d319b02416f669d70f4562 (diff)
downloadrspamd-2b8e6958f40ef36c1508118ac36a43694283a83c.tar.gz
rspamd-2b8e6958f40ef36c1508118ac36a43694283a83c.zip
Spelling (#4086)
[Rework] Massive spelling fix from @jsoref
Diffstat (limited to 'doc')
-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";