From bdcb9fb5d70236ae983c173179960a9e4753d1a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sat, 5 Jul 2014 11:54:13 +0200 Subject: [PATCH] doc: fix example for function strcasecmp_range in Italian plugin API reference --- doc/it/weechat_plugin_api.it.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]