1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-05 09:13:14 +02:00

doc: fix typo in plugin API reference (example for weechat_string_toupper)

This commit is contained in:
Sebastien Helleu
2012-02-09 07:32:04 +01:00
parent 544b7098b3
commit 06fb5d1921
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -556,7 +556,7 @@ C example:
[source,C]
----------------------------------------
char *str = "AbCdé";
weechat_string_tolower (str); /* str is now: "ABCDé" */
weechat_string_toupper (str); /* str is now: "ABCDé" */
----------------------------------------
[NOTE]
+1 -1
View File
@@ -563,7 +563,7 @@ Exemple en C :
[source,C]
----------------------------------------
char *str = "AbCdé";
weechat_string_tolower (str); /* str vaut maintenant : "ABCDé" */
weechat_string_toupper (str); /* str vaut maintenant : "ABCDé" */
----------------------------------------
[NOTE]
+1 -1
View File
@@ -572,7 +572,7 @@ Esempio in C:
[source,C]
----------------------------------------
char *str = "AbCdé";
weechat_string_tolower (str); /* str ora è: "ABCDé" */
weechat_string_toupper (str); /* str ora è: "ABCDé" */
----------------------------------------
[NOTE]