diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-02-14 07:25:22 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-02-14 07:25:22 +0100 |
commit | a2bb57bf82f6e771c6eca334064c281440cd52cc (patch) | |
tree | 517b7cc59c415f253bf798e084e0285e820724b2 /doc/it/weechat_plugin_api.it.adoc | |
parent | ba7ff87d19217b92dda4eee6a5020aa29441bae1 (diff) | |
download | weechat-a2bb57bf82f6e771c6eca334064c281440cd52cc.zip |
doc/api: add missing type for argument "count" in Python prototype of function ngettext
Diffstat (limited to 'doc/it/weechat_plugin_api.it.adoc')
-rw-r--r-- | doc/it/weechat_plugin_api.it.adoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/it/weechat_plugin_api.it.adoc b/doc/it/weechat_plugin_api.it.adoc index 688d408bc..424ffb3df 100644 --- a/doc/it/weechat_plugin_api.it.adoc +++ b/doc/it/weechat_plugin_api.it.adoc @@ -568,7 +568,7 @@ Script (Python): [source,python] ---- # prototipo -def ngettext(string: str, plural: str, count) -> str: ... +def ngettext(string: str, plural: str, count: int) -> str: ... # esempio num_files = 2 |