diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2016-03-14 20:11:59 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2016-03-14 20:11:59 +0100 |
commit | fa5d6c17f5b98b47984682911434c1a8084e9d2f (patch) | |
tree | 55971af32c3cea51c690b357b3551c0b937469dc /doc | |
parent | 2da58ea2b7c34053ce231cf028143236e78d19f9 (diff) | |
download | weechat-fa5d6c17f5b98b47984682911434c1a8084e9d2f.zip |
doc: fix typos in plugin API reference
Diffstat (limited to 'doc')
-rw-r--r-- | doc/en/weechat_plugin_api.en.asciidoc | 2 | ||||
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.asciidoc | 2 | ||||
-rw-r--r-- | doc/it/weechat_plugin_api.it.asciidoc | 4 | ||||
-rw-r--r-- | doc/ja/weechat_plugin_api.ja.asciidoc | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/doc/en/weechat_plugin_api.en.asciidoc b/doc/en/weechat_plugin_api.en.asciidoc index 5d7ecc68d..d36b71a8e 100644 --- a/doc/en/weechat_plugin_api.en.asciidoc +++ b/doc/en/weechat_plugin_api.en.asciidoc @@ -4313,7 +4313,7 @@ Script (Python): [source,python] ---- # prototype -config_file = weechat.config_new(name, calback_reload, callback_reload_data) +config_file = weechat.config_new(name, callback_reload, callback_reload_data) # example def my_config_reload_cb(data, config_file): diff --git a/doc/fr/weechat_plugin_api.fr.asciidoc b/doc/fr/weechat_plugin_api.fr.asciidoc index ff5ca9fa4..eff59ba25 100644 --- a/doc/fr/weechat_plugin_api.fr.asciidoc +++ b/doc/fr/weechat_plugin_api.fr.asciidoc @@ -4384,7 +4384,7 @@ Script (Python) : [source,python] ---- # prototype -config_file = weechat.config_new(name, calback_reload, callback_reload_data) +config_file = weechat.config_new(name, callback_reload, callback_reload_data) # exemple def my_config_reload_cb(data, config_file): diff --git a/doc/it/weechat_plugin_api.it.asciidoc b/doc/it/weechat_plugin_api.it.asciidoc index 134171f1a..d77f53697 100644 --- a/doc/it/weechat_plugin_api.it.asciidoc +++ b/doc/it/weechat_plugin_api.it.asciidoc @@ -4439,7 +4439,7 @@ Script (Python): [source,python] ---- # prototipo -config_file = weechat.config_new(name, calback_reload, callback_reload_data) +config_file = weechat.config_new(name, callback_reload, callback_reload_data) # esempio def my_config_reload_cb(data, config_file): @@ -7488,7 +7488,7 @@ Argomenti: ** valore restituito: *** 'WEECHAT_RC_OK' *** 'WEECHAT_RC_ERROR' -* 'callback_data': puntatore fornito alla calback quando chiamata da WeeChat +* 'callback_data': puntatore fornito alla callback quando chiamata da WeeChat Valore restituito: diff --git a/doc/ja/weechat_plugin_api.ja.asciidoc b/doc/ja/weechat_plugin_api.ja.asciidoc index ece305f31..9941f26a0 100644 --- a/doc/ja/weechat_plugin_api.ja.asciidoc +++ b/doc/ja/weechat_plugin_api.ja.asciidoc @@ -4314,7 +4314,7 @@ struct t_config_file *config_file = weechat_config_new ("test", [source,python] ---- # プロトタイプ -config_file = weechat.config_new(name, calback_reload, callback_reload_data) +config_file = weechat.config_new(name, callback_reload, callback_reload_data) # 例 def my_config_reload_cb(data, config_file): |