diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-08-26 15:47:35 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-08-26 15:47:35 +0100 |
commit | 2f11881db5740e9d71dd8d21762ac6e3eab22404 (patch) | |
tree | 2cf81d11a8983cd8662bad0e7d3d43bdb2897ad9 /doc | |
parent | c6537f13a15cd9b9421f9b6ccd987a56a6966185 (diff) | |
download | rspamd-2f11881db5740e9d71dd8d21762ac6e3eab22404.tar.gz rspamd-2f11881db5740e9d71dd8d21762ac6e3eab22404.zip |
Do not add tabs for lists.
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/lua_api.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/lua_api.pl b/doc/lua_api.pl index a745bdf78..f608fbf8d 100755 --- a/doc/lua_api.pl +++ b/doc/lua_api.pl @@ -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 { |