]> git.ipfire.org Git - thirdparty/rspamd.git/commitdiff
Do not add tabs for lists.
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 26 Aug 2014 14:47:35 +0000 (15:47 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 26 Aug 2014 14:47:35 +0000 (15:47 +0100)
doc/lua_api.pl

index a745bdf78936c5bf7fc98becaea3f760ec265250..f608fbf8d952bda00834bccefd877d0a9b60af53 100755 (executable)
@@ -64,10 +64,10 @@ EOD
                        if ($f->{'params'} && scalar @{$f->{'params'}} > 0) {
                                foreach (@{$f->{'params'}}) {
                                        if ($_->{'type'}) {
-                                               print "\t- `$_->{'name'} \{$_->{'type'}\}`: $_->{'description'}\n";
+                                               print "- `$_->{'name'} \{$_->{'type'}\}`: $_->{'description'}\n";
                                        }
                                        else {
-                                               print "\t- `$_->{'name'}`: $_->{'description'}\n";
+                                               print "- `$_->{'name'}`: $_->{'description'}\n";
                                        }
                                }
                        }
@@ -78,10 +78,10 @@ EOD
                        if ($f->{'return'} && $f->{'return'}->{'description'}) {
                                $_ = $f->{'return'};
                                if ($_->{'type'}) {
-                                       print "\t- `\{$_->{'type'}\}`: $_->{'description'}\n";
+                                       print "- `\{$_->{'type'}\}`: $_->{'description'}\n";
                                }
                                else {
-                                       print "\t- $_->{'description'}\n";
+                                       print "- $_->{'description'}\n";
                                }
                        }
                        else {