summaryrefslogtreecommitdiff
path: root/doc/it/weechat_plugin_api.it.asciidoc
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2014-07-05 11:54:13 +0200
committerSébastien Helleu <flashcode@flashtux.org>2014-07-05 11:54:13 +0200
commitbdcb9fb5d70236ae983c173179960a9e4753d1a6 (patch)
tree9adf5a90cb3dc37a132a96401437070c12bbaf96 /doc/it/weechat_plugin_api.it.asciidoc
parent95011c82e0ab9f15fc6508d1aebe2ec0f86ccb94 (diff)
downloadweechat-bdcb9fb5d70236ae983c173179960a9e4753d1a6.zip
doc: fix example for function strcasecmp_range in Italian plugin API reference
Diffstat (limited to 'doc/it/weechat_plugin_api.it.asciidoc')
-rw-r--r--doc/it/weechat_plugin_api.it.asciidoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/it/weechat_plugin_api.it.asciidoc b/doc/it/weechat_plugin_api.it.asciidoc
index 4f3d875f1..8c2bf762e 100644
--- a/doc/it/weechat_plugin_api.it.asciidoc
+++ b/doc/it/weechat_plugin_api.it.asciidoc
@@ -632,7 +632,7 @@ Esempio in C:
[source,C]
----
-int diff = weechat_strcasecmp ("nick{away}", "NICK[AWAY]"); /* == 0 */
+int diff = weechat_strcasecmp_range ("nick{away}", "NICK[away]", 29); /* == 0 */
----
[NOTE]