1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-04 08:43:13 +02:00

doc: fix example for function strcasecmp_range in Italian plugin API reference

This commit is contained in:
Sébastien Helleu
2014-07-05 11:54:13 +02:00
parent 95011c82e0
commit bdcb9fb5d7
+1 -1
View File
@@ -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]