diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2006-08-26 21:47:52 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2006-08-26 21:47:52 +0000 |
commit | cb334b6de3b1793a3caf81dec83b994b9b85a0e8 (patch) | |
tree | 068cd2807e5bf4cf7c76ae8cde45c81d547dcc8a /doc/fr | |
parent | 9905ee774b315f1da4e03c8c32a3f29d4224c1a8 (diff) | |
download | weechat-cb334b6de3b1793a3caf81dec83b994b9b85a0e8.zip |
Fixed typo in doc for example of get_buffer_data (lua)
Diffstat (limited to 'doc/fr')
-rw-r--r-- | doc/fr/weechat.fr.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/fr/weechat.fr.xml b/doc/fr/weechat.fr.xml index cea285b20..9c23ec6de 100644 --- a/doc/fr/weechat.fr.xml +++ b/doc/fr/weechat.fr.xml @@ -6825,7 +6825,7 @@ if bc then b, bdatas = next (bc, nil) weechat.print("**** buffer data for '" .. channel .. "'@'" .. server .. "' ****") while (b) do - key, value = next (chaninfos, nil) + key, value = next (bdatas, nil) while (key) do weechat.print(" > " .. key .. " => " .. value) key, value = next (bdatas, key) |