diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2016-04-02 10:38:04 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2016-04-02 10:38:04 +0200 |
commit | ece614504f1b6628d8bda0eb48362686d8bad3a2 (patch) | |
tree | de2ad9d62e1941317524bdc2a93fcb5f142e5003 | |
parent | 7235e89c0fb5a7e2ea0459a46115f179f58e3418 (diff) | |
download | weechat-ece614504f1b6628d8bda0eb48362686d8bad3a2.zip |
doc: fix typos in French plugin API reference
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.asciidoc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.asciidoc b/doc/fr/weechat_plugin_api.fr.asciidoc index 93ba6cde2..88e76ac45 100644 --- a/doc/fr/weechat_plugin_api.fr.asciidoc +++ b/doc/fr/weechat_plugin_api.fr.asciidoc @@ -973,12 +973,12 @@ Exemple en C : [source,C] ---- char *str = weechat_string_expand_home ("%h/test"); -/* result: "/home/xxx/.weechat/test" */ +/* résultat : "/home/xxx/.weechat/test" */ /* ... */ free (str); ---- -Script (Python): +Script (Python) : [source,python] ---- @@ -1548,11 +1548,11 @@ Exemple en C : char **argv; int argc; argv = weechat_string_split_shell ("test 'first arg' \"second arg\"", &argc); -/* résultat: argv[0] == "test" - argv[1] == "first arg" - argv[2] == "second arg" - argv[3] == NULL - argc == 3 +/* résultat : argv[0] == "test" + argv[1] == "first arg" + argv[2] == "second arg" + argv[3] == NULL + argc == 3 */ weechat_string_free_split (argv); ---- |