summaryrefslogtreecommitdiff
path: root/doc/fr
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2013-08-03 22:11:04 +0200
committerSebastien Helleu <flashcode@flashtux.org>2013-08-03 22:11:04 +0200
commitb94a1ce59baa99e2076c83d82f25cbe5d9a7c19b (patch)
tree1da99d6ebc37a8cf9544d451719c339126ecdfc6 /doc/fr
parent43e3ff3b1a42a6516c53d175c96f58df059f324f (diff)
downloadweechat-b94a1ce59baa99e2076c83d82f25cbe5d9a7c19b.zip
doc: fix typo in examples for function bar_new (plugin API reference)
Diffstat (limited to 'doc/fr')
-rw-r--r--doc/fr/weechat_plugin_api.fr.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.txt b/doc/fr/weechat_plugin_api.fr.txt
index 9ddb8226e..5db4d9c16 100644
--- a/doc/fr/weechat_plugin_api.fr.txt
+++ b/doc/fr/weechat_plugin_api.fr.txt
@@ -12104,7 +12104,7 @@ Exemple en C :
----------------------------------------
struct t_gui_bar *my_bar = weechat_bar_new ("mybar",
"off",
- 100,
+ "100",
"window",
"",
"top",
@@ -12129,7 +12129,7 @@ bar = weechat.bar_new(name, hidden, priority, type, condition, position,
color_fg, color_delim, color_bg, separator, items)
# exemple
-bar = weechat.bar_new("mybar", "off", 100, "window", "", "top", "horizontal", "vertical",
+bar = weechat.bar_new("mybar", "off", "100", "window", "", "top", "horizontal", "vertical",
"0", "5", "default", "cyan", "blue", "off", "time,buffer_number+buffer_name")
----------------------------------------